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:
2025-11-18 14:04:01 +01:00
parent 3a7f2db331
commit 9706990ed3
604 changed files with 49818 additions and 0 deletions

View File

@ -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;
}
}

View File

@ -0,0 +1 @@
@import "bootstrap-touchspin";