Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/joomla5/media/templates/site/cassiopeia/scss/blocks/ |
| [Home] [System Details] [Kill Me] |
// Form
.form-control {
max-width: $input-max-width;
background-color: $white;
&.input-xlarge {
max-width: 21.875rem;
}
&.input-xxlarge {
max-width: 34.375rem;
}
&.input-full {
max-width: 100%;
}
}
.spacer hr {
width: 23.75rem;
}
.form-select {
max-width: $input-max-width;
}
// Bootstrap 4 b/c on form-inline
.form-inline .form-select {
display: inline-block;
width: auto;
}
@include media-breakpoint-down(lg) {
.form-inline .form-select {
width: 100%;
}
}
td .form-control {
display: inline-block;
width: auto;
}
.checkboxes {
padding-top: 5px;
.checkbox input {
position: static;
margin-left: 0;
}
}
.modal label {
width: 100%;
}
// Validation
.invalid {
color: $danger;
border-color: $danger;
}
.valid {
border-color: $success;
}
.form-control-feedback {
display: block;
}
// set up hidden tooltip
[role="tooltip"]:not(.show) {
right: 5em;
z-index: $zindex-tooltip;
display: none;
max-width: 100%;
padding: .5em;
margin: .5em;
color: $black;
text-align: start;
background: $white;
border: 1px solid $gray-600;
border-radius: $border-radius;
box-shadow: 0 0 .5rem rgba(0, 0, 0, .8);
&[id^=editarticle-] {
right: auto;
margin-inline-start: -10em;
}
&[id^=editcontact-] {
right: auto;
margin-inline-start: -10em;
}
&[id^=id-skip-] {
right: auto;
}
&[id^=cbunpublish] {
right: auto;
}
}
// reveal associated tooltip on focus
:focus + [role="tooltip"],
:hover + [role="tooltip"] {
position: absolute;
display: block;
}
.filter-search-bar__description {
bottom: 100%;
}
fieldset {
margin-bottom: $cassiopeia-grid-gutter*2;
+ fieldset {
margin-top: $cassiopeia-grid-gutter*2;
}
> * {
margin-bottom: 0;
}
}
.control-group {
margin: $cassiopeia-grid-gutter 0;
}
.container-popup .filter-search-bar__description {
top: 100%;
bottom: auto;
}
.com-users-login__options {
margin-top: $cassiopeia-grid-gutter*2;
}
.com-users-profile__edit,
.com-users-registration {
#jform_privacyconsent_privacy,
#jform_profile_tos,
#jform_terms_terms {
.radio {
display: inline-flex;
gap: 1rem;
}
}
}
// Subform - non table layout
div.subform-repeatable-group {
position: relative;
padding: 32px 32px 16px 28px;
margin-top: 20px;
margin-left: 32px;
border: $input-border-width solid $input-border-color;
@include border-radius($border-radius);
> .control-group {
margin-top: 0;
}
> .btn-toolbar {
.btn-group {
position: static;
margin: 0;
}
.btn {
position: absolute;
&.group-add {
right: -1px;
bottom: -1px;
border-radius: $border-radius 0 $border-radius 0;
}
&.group-remove {
top: -1px;
right: -1px;
border-radius: 0 $border-radius 0 $border-radius;
}
&.group-move {
top: 50%;
right: 100%;
padding: 0;
border-radius: $border-radius 0 0 $border-radius;
transform: translateY(-50%);
span {
padding: 1.5rem .5rem;
}
}
&.group-move-up {
top: 50%;
right: 100%;
margin-top: -45px;
border-radius: 0;
transform: translateY(-50%);
}
&.group-move-down {
top: 50%;
right: 100%;
margin-top: 45px;
border-radius: 0;
transform: translateY(-50%);
}
}
}
}
// Highlight draggable section
.subform-repeatable-group[draggable="true"] {
// For non table layout
background-color: $teal;
// For table layout
> td {
background-color: $teal;
}
}