0
0
Fork 0
salix-front-mindshore-fork2/src/css/app.scss

113 lines
2.1 KiB
SCSS
Raw Normal View History

2022-12-20 11:00:36 +00:00
// app global css in SCSS form
2022-12-20 11:30:25 +00:00
@import './icons.scss';
2024-03-01 09:47:20 +00:00
body.body--light {
--fount-color: black;
--vn-sectionColor: #ffffff;
--vn-pageColor: #e0e0e0;
background-color: var(--vn-pageColor);
2024-03-01 09:47:20 +00:00
.q-header .q-toolbar {
color: var(--fount-color);
}
--vn-text: var(--fount-color);
--vn-gray: var(--vn-sectionColor);
--vn-label: #5f5f5f;
--vn-dark: var(--vn-sectionColor);
--vn-light-gray: #e7e3e3;
}
body.body--dark {
--vn-pageColor: #222;
--vn-SectionColor: #3c3b3b;
background-color: var(--vn-pageColor);
--vn-text: white;
--vn-gray: var(--vn-SectionColor);
--vn-label: #a8a8a8;
--vn-dark: var(--vn-SectionColor);
--vn-light-gray: #424242;
}
2022-12-20 11:30:25 +00:00
2023-01-03 13:17:22 +00:00
a {
text-decoration: none;
}
2022-12-20 11:30:25 +00:00
.link {
color: $color-link;
2022-12-20 11:30:25 +00:00
cursor: pointer;
}
2024-03-01 09:47:20 +00:00
.tx-color-link {
color: $color-link !important;
}
.header-link {
color: $color-link !important;
cursor: pointer;
border-bottom: solid $primary;
border-width: 2px;
width: 100%;
.q-icon {
float: right;
}
}
2022-12-20 11:30:25 +00:00
.link:hover {
text-decoration: underline;
2022-12-20 11:30:25 +00:00
}
2023-01-19 06:17:51 +00:00
// Removes chrome autofill background
input:-webkit-autofill,
select:-webkit-autofill {
color: var(--vn-text);
2023-01-19 06:17:51 +00:00
font-family: $typography-font-family;
-webkit-text-fill-color: var(--vn-text);
2023-01-19 06:17:51 +00:00
-webkit-background-clip: text !important;
background-clip: text !important;
}
2023-02-09 06:26:08 +00:00
.bg-vn-dark {
background-color: var(--vn-dark);
2023-08-10 08:52:34 +00:00
}
2023-11-17 13:06:43 +00:00
.color-vn-text {
color: var(--vn-text);
}
.color-vn-white {
color: $white;
}
2023-11-17 13:06:43 +00:00
.vn-card {
background-color: var(--vn-gray);
color: var(--vn-text);
border-radius: 8px;
}
2024-01-22 15:25:59 +00:00
.vn-card-list {
width: 100%;
max-width: 60em;
}
2024-02-08 10:24:24 +00:00
.bg-vn-primary-row {
background-color: var(--vn-dark);
}
.bg-vn-secondary-row {
background-color: var(--vn-light-gray);
}
/* Estilo para el asterisco en campos requeridos */
.q-field.required .q-field__label:after {
content: ' *';
}
2024-01-25 11:53:24 +00:00
input[type='number'] {
-moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
}