| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- @import '_variables';
- @import '_mixins';
- button {
- @include input-colors;
- background-color: var(--bg_elements);
- color: var(--fg_color);
- border: 1px solid var(--accent_border);
- padding: 3px 6px;
- font-size: 14px;
- cursor: pointer;
- float: right;
- }
- input[type="text"],
- input[type="date"],
- select {
- @include input-colors;
- background-color: var(--bg_elements);
- padding: 1px 4px;
- color: var(--fg_color);
- border: 1px solid var(--accent_border);
- border-radius: 0;
- font-size: 14px;
- }
- input[type="date"]::-webkit-inner-spin-button {
- display: none;
- }
- input[type="date"]::-webkit-clear-button {
- margin-left: 17px;
- filter: grayscale(100%);
- filter: hue-rotate(120deg);
- }
- input::-webkit-calendar-picker-indicator {
- opacity: 0;
- }
- input::-webkit-datetime-edit-day-field:focus,
- input::-webkit-datetime-edit-month-field:focus,
- input::-webkit-datetime-edit-year-field:focus {
- background-color: var(--accent);
- color: var(--fg_color);
- outline: none;
- }
- .date-range {
- .date-input {
- display: inline-block;
- position: relative;
- }
- .icon-container {
- pointer-events: none;
- position: absolute;
- top: 2px;
- right: 5px;
- }
- .search-title {
- margin: 0 2px;
- }
- }
- .icon-button button {
- color: var(--accent);
- text-decoration: none;
- background: none;
- border: none;
- float: none;
- padding: unset;
- padding-left: 4px;
- &:hover {
- color: var(--accent_light);
- }
- }
- .checkbox {
- position: absolute;
- top: 1px;
- right: 0;
- height: 17px;
- width: 17px;
- background-color: var(--bg_elements);
- border: 1px solid var(--accent_border);
- &:after {
- content: "";
- position: absolute;
- display: none;
- }
- }
- .checkbox-container {
- display: block;
- position: relative;
- margin-bottom: 5px;
- cursor: pointer;
- user-select: none;
- padding-right: 22px;
- input {
- position: absolute;
- opacity: 0;
- cursor: pointer;
- height: 0;
- width: 0;
- &:checked ~ .checkbox:after {
- display: block;
- }
- }
- &:hover input ~ .checkbox {
- border-color: var(--accent);
- }
- &:active input ~ .checkbox {
- border-color: var(--accent_light);
- }
- .checkbox:after {
- left: 2px;
- bottom: 0;
- font-size: 13px;
- font-family: $font_4;
- content: '\e803';
- }
- }
- .pref-group {
- display: inline;
- }
- .preferences {
- button {
- margin: 6px 0 3px 0;
- }
- label {
- padding-right: 135px;
- }
- select {
- position: absolute;
- top: 0;
- right: 0;
- display: block;
- -moz-appearance: none;
- -webkit-appearance: none;
- appearance: none;
- }
- input[type="text"] {
- position: absolute;
- right: 0;
- max-width: 120px;
- }
- .pref-group {
- display: block;
- }
- .pref-input {
- position: relative;
- margin-bottom: 6px;
- }
- .pref-reset {
- float: left;
- }
- }
|