Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2018-11-24 19:22:59 +0300
committerXhmikosR <xhmikosr@gmail.com>2018-11-25 12:46:37 +0300
commit5c336d0247cd94ed56ac24d941f86325df474313 (patch)
tree8e905679661cec26543ded7bae9a8d53f5ed6cd9 /dist/css/bootstrap.css
parentfdc5c1f49ab3f826fcff79c78fc0fd9adf19a6fb (diff)
Dist
Diffstat (limited to 'dist/css/bootstrap.css')
-rw-r--r--dist/css/bootstrap.css51
1 files changed, 32 insertions, 19 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css
index 3ffdb60179..9a9e2ff26f 100644
--- a/dist/css/bootstrap.css
+++ b/dist/css/bootstrap.css
@@ -95,6 +95,7 @@ abbr[data-original-title] {
text-decoration: underline dotted;
cursor: help;
border-bottom: 0;
+ text-decoration-skip-ink: none;
}
address {
@@ -3250,6 +3251,16 @@ input[type="button"].btn-block {
border: 0;
}
+.dropdown-item:first-child {
+ border-top-left-radius: calc(0.25rem - 1px);
+ border-top-right-radius: calc(0.25rem - 1px);
+}
+
+.dropdown-item:last-child {
+ border-bottom-right-radius: calc(0.25rem - 1px);
+ border-bottom-left-radius: calc(0.25rem - 1px);
+}
+
.dropdown-item:hover, .dropdown-item:focus {
color: #16181b;
text-decoration: none;
@@ -3550,30 +3561,45 @@ input[type="button"].btn-block {
margin-top: 0;
}
+.input-group-lg > .form-control:not(textarea),
+.input-group-lg > .custom-select {
+ height: calc(2.875rem + 2px);
+}
+
.input-group-lg > .form-control,
+.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
- height: calc(2.875rem + 2px);
padding: 0.5rem 1rem;
font-size: 1.25rem;
line-height: 1.5;
border-radius: 0.3rem;
}
+.input-group-sm > .form-control:not(textarea),
+.input-group-sm > .custom-select {
+ height: calc(1.8125rem + 2px);
+}
+
.input-group-sm > .form-control,
+.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
- height: calc(1.8125rem + 2px);
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
line-height: 1.5;
border-radius: 0.2rem;
}
+.input-group-lg > .custom-select,
+.input-group-sm > .custom-select {
+ padding-right: 1.75rem;
+}
+
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
@@ -4570,7 +4596,7 @@ input[type="button"].btn-block {
.card-header {
padding: 0.75rem 1.25rem;
margin-bottom: 0;
- color: #212529;
+ color: inherit;
background-color: rgba(0, 0, 0, 0.03);
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
@@ -6235,15 +6261,14 @@ a.close.disabled {
}
.spinner-border {
- position: relative;
display: inline-block;
width: 2rem;
height: 2rem;
overflow: hidden;
text-indent: -999em;
vertical-align: text-bottom;
- border: 0.25em solid;
- border-color: currentColor transparent currentColor currentColor;
+ border: 0.25em solid currentColor;
+ border-right-color: transparent;
border-radius: 50%;
-webkit-animation: spinner-border .75s linear infinite;
animation: spinner-border .75s linear infinite;
@@ -6257,38 +6282,25 @@ a.close.disabled {
@-webkit-keyframes spinner-grow {
0% {
- opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
50% {
opacity: 1;
}
- 100% {
- opacity: 0;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
}
@keyframes spinner-grow {
0% {
- opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
50% {
opacity: 1;
}
- 100% {
- opacity: 0;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
}
.spinner-grow {
- position: relative;
display: inline-block;
width: 2rem;
height: 2rem;
@@ -6297,6 +6309,7 @@ a.close.disabled {
vertical-align: text-bottom;
background-color: currentColor;
border-radius: 50%;
+ opacity: 0;
-webkit-animation: spinner-grow .75s linear infinite;
animation: spinner-grow .75s linear infinite;
}