| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- #ui__ac {
- &-inner {
- max-height: 400px;
- overflow-x: hidden;
- overflow-y: auto;
- position: relative;
- -webkit-overflow-scrolling: touch;
- > .menu-link {
- padding: 6px 8px;
- }
- }
- }
- .ui__notifications {
- position: fixed;
- z-index: 99;
- width: 100%;
- top: 3.2em;
- &-content {
- @apply inset-0 flex items-end justify-center px-4 py-3
- pointer-events-none sm:px-6 sm:py-3 sm:items-start
- sm:justify-end;
- }
- .notification-area {
- background-color: var(--ls-tertiary-background-color, #fff);
- color: var(--ls-primary-text-color);
- }
- }
- .ui__confirm-modal {
- .sublabel {
- display: flex;
- padding: 2px 0;
- align-items: center;
- font-size: 14px;
- input[type=checkbox] {
- margin-right: 8px;
- }
- }
- }
- .ui__button_base {
- @apply inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4
- font-medium rounded-md text-white
- bg-gray-500 hover:bg-gray-700 active:bg-gray-700
- focus:border-gray-700 focus:shadow-outline-gray
- focus:outline-none transition
- ease-in-out duration-150 mt-1;
- &.is-logseq {
- @apply focus:border-gray-500;
- color: var(--ls-primary-text-color);
- background: var(--ls-secondary-background-color);
- }
- &.is-primary {
- @apply bg-indigo-600 hover:bg-indigo-700 active:bg-indigo-700
- focus:border-indigo-700 focus:shadow-outline-indigo;
- }
- }
- .dropdown-wrapper {
- background-color: var(--ls-primary-background-color, #fff);
- min-width: 12rem;
- }
- .dropdown-caret {
- display: inline-block;
- width: 0;
- height: 0;
- vertical-align: middle;
- content: "";
- border-top-style: solid;
- border-top-width: 4px;
- border-right: 4px solid transparent;
- border-bottom: 0 solid transparent;
- border-left: 4px solid transparent;
- }
- .form-checkbox {
- color: var(--ls-page-checkbox-color, #137cbd);
- background-color: transparent;
- border-radius: 0;
- border: 2px solid;
- border-color: var(--ls-page-checkbox-border-color);
- appearance: none
- }
- .form-checkbox {
- &:checked {
- border: none;
- &:focus {
- box-shadow: none;
- }
- }
- &:not(:checked):focus {
- box-shadow: none;
- }
- }
- .form-select {
- background-color: var(--ls-primary-background-color, transparent);
- background-repeat: no-repeat;
- border-width: 1px;
- border-color: var(--ls-border-color);
- }
- .form-input {
- border-width: 1px;
- border-color: var(--ls-border-color);
- &:focus {
- box-shadow: 0 0 0 2px rgba(164, 202, 254, 0.45);
- }
- }
|