feat(main): Add base theme: This is the falcon theme out of the box.
This is falcon v3.1.2
This commit is contained in:
@ -0,0 +1,59 @@
|
||||
.bootstrap-touchspin {
|
||||
max-width: 100px;
|
||||
overflow: hidden;
|
||||
border: $input-border-width solid $input-border-color;
|
||||
border-radius: $border-radius;
|
||||
margin: 0 auto;
|
||||
|
||||
> input {
|
||||
max-width: 60px;
|
||||
padding: 0;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
border: none;
|
||||
border-right: $input-border-width solid $input-border-color;
|
||||
border-left: $input-border-width solid $input-border-color;
|
||||
box-shadow: none;
|
||||
appearance: textfield;
|
||||
margin-top: -#{$input-border-width};
|
||||
margin-bottom: -#{$input-border-width};
|
||||
|
||||
&::-webkit-outer-spin-button,
|
||||
&::-webkit-inner-spin-button {
|
||||
margin: 0;
|
||||
appearance: none;
|
||||
}
|
||||
}
|
||||
|
||||
.btn {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
display: block;
|
||||
width: 1.8em;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
color: $input-color;
|
||||
text-align: center;
|
||||
background-color: $white;
|
||||
border: 0;
|
||||
|
||||
@include hover-focus() {
|
||||
background: $gray-200;
|
||||
}
|
||||
}
|
||||
|
||||
.input-group-prepend,
|
||||
.input-group-append {
|
||||
display: block;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.input-touchspin {
|
||||
max-width: 100px;
|
||||
opacity: 0;
|
||||
|
||||
.bootstrap-touchspin & {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1 @@
|
||||
@import "bootstrap-touchspin";
|
||||
Reference in New Issue
Block a user