update assets from bootstrap@3.3.7

This commit is contained in:
Vu Nguyen
2021-01-14 20:39:47 -06:00
parent 3deee881b1
commit ba3182fd59
73 changed files with 3046 additions and 5453 deletions

View File

@@ -2,6 +2,7 @@
// Tooltips
// --------------------------------------------------
// Base class
.tooltip {
position: absolute;
@@ -14,47 +15,25 @@
.opacity(0);
&.in {
.opacity(@tooltip-opacity);
}
&.in { .opacity(@tooltip-opacity); }
&.top {
margin-top: -3px;
padding: @tooltip-arrow-width 0;
margin-top: -3px;
}
&.right {
margin-left: 3px;
padding: 0 @tooltip-arrow-width;
margin-left: 3px;
}
&.bottom {
margin-top: 3px;
padding: @tooltip-arrow-width 0;
margin-top: 3px;
}
&.left {
margin-left: -3px;
padding: 0 @tooltip-arrow-width;
margin-left: -3px;
}
}
// Wrapper for the tooltip content
.tooltip-inner {
max-width: @tooltip-max-width;
padding: 3px 8px;
color: @tooltip-color;
text-align: center;
background-color: @tooltip-bg;
border-radius: @border-radius-base;
}
// Arrows
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1
.tooltip {
// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1
&.top .tooltip-arrow {
bottom: 0;
left: 50%;
@@ -63,8 +42,8 @@
border-top-color: @tooltip-arrow-color;
}
&.top-left .tooltip-arrow {
bottom: 0;
right: @tooltip-arrow-width;
bottom: 0;
margin-bottom: -@tooltip-arrow-width;
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
border-top-color: @tooltip-arrow-color;
@@ -112,3 +91,22 @@
border-bottom-color: @tooltip-arrow-color;
}
}
// Wrapper for the tooltip content
.tooltip-inner {
max-width: @tooltip-max-width;
padding: 3px 8px;
color: @tooltip-color;
text-align: center;
background-color: @tooltip-bg;
border-radius: @border-radius-base;
}
// Arrows
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}