5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-06 13:15:46 +00:00

mejoras en la seleccion y temas oscuros

This commit is contained in:
f 2019-09-30 14:11:33 -03:00
parent f8c50e6515
commit e62dc1b115
No known key found for this signature in database
GPG key ID: 2AE5A13E321F953D

View file

@ -77,15 +77,10 @@ $fucsia: #e9193e;
$celeste: #91f0ff; $celeste: #91f0ff;
$verde: #96d643; $verde: #96d643;
/* Tema */
ol.breadcrumb { ol.breadcrumb {
background-color: transparent; background-color: transparent;
} }
.breadcrumb-item {
color: $black;
}
.form-control { .form-control {
&:focus { &:focus {
border-color: transparentize($verde, 0.25); border-color: transparentize($verde, 0.25);
@ -93,20 +88,17 @@ ol.breadcrumb {
} }
} }
.btn-info { .breadcrumb-item,
background-color: $turquesa; .breadcrumb-item.active,
border-color: $turquesa; .table,
&:focus { .form-control,
box-shadow: 0 0 0 0.2rem transparentize($turquesa, 0.5); .custom-file-label {
} color: var(--foreground);
} }
.btn-success { .form-control,
background-color: $verde; .custom-file-label {
border-color: $verde; background-color: var(--background);
&:focus {
box-shadow: 0 0 0 0.2rem transparentize($verde, 0.5);
}
} }
.turbolinks-progress-bar { .turbolinks-progress-bar {
@ -114,37 +106,6 @@ ol.breadcrumb {
background-color: $magenta; background-color: $magenta;
} }
.background-cover {
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.full-height {
min-height: 80vh;
}
html {
position: relative;
min-height: 100%;
}
.footer {
width: 100%;
height: $footer-height;
line-height: $footer-height;
text-align: center;
}
textarea.post-content {
min-height: 80vh;
font-family: monospace;
font-size: 90%;
}
.rtl { .rtl {
direction: rtl; direction: rtl;
text-align: right; text-align: right;
@ -260,3 +221,17 @@ svg {
color: $white; color: $white;
} }
} }
::-moz-selection,
::selection {
background: var(--color);
color: var(--background);
}
.black-bg {
::selection,
::-moz-selection {
background-color: $magenta;
color: $white;
}
}