mirror of
https://github.com/usememos/memos.git
synced 2025-10-10 22:36:21 +08:00
* feat(system): support for disabling public memos * fix(web/editor): set visibility to private on disabled public memos * feat(server/memo): find/check if public memos are disabled * fix(server/memo): handle error for finding system error * fix(server/memo): unmarshal visiblity when getting system settings * chore(web): move side effect imports to end * Update memo.go --------- Co-authored-by: boojack <stevenlgtm@gmail.com>
55 lines
1.6 KiB
Text
55 lines
1.6 KiB
Text
.selector-wrapper {
|
|
@apply flex flex-col justify-start items-start relative h-8;
|
|
|
|
> .current-value-container {
|
|
@apply flex flex-row justify-between items-center w-full h-full rounded px-2 pr-1 bg-white dark:bg-zinc-700 dark:border-zinc-600 border cursor-pointer select-none;
|
|
|
|
&:hover,
|
|
&.active {
|
|
@apply bg-gray-100 dark:bg-zinc-700;
|
|
}
|
|
|
|
> .value-text {
|
|
@apply text-sm mr-0 truncate dark:text-gray-300;
|
|
width: calc(100% - 20px);
|
|
}
|
|
|
|
> .lock-text {
|
|
@apply flex flex-row justify-center items-center w-4 shrink-0 mr-1;
|
|
}
|
|
|
|
> .arrow-text {
|
|
@apply flex flex-row justify-center items-center w-4 shrink-0;
|
|
|
|
> .icon-img {
|
|
@apply w-4 h-auto opacity-40 dark:text-gray-300;
|
|
}
|
|
}
|
|
}
|
|
|
|
> .items-wrapper {
|
|
@apply flex flex-col justify-start items-start absolute top-full left-0 w-auto p-1 mt-1 -ml-2 bg-white dark:bg-zinc-700 dark:border-zinc-600 rounded-md overflow-y-auto z-1 hide-scrollbar;
|
|
min-width: calc(100% + 16px);
|
|
max-height: 256px;
|
|
box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%);
|
|
|
|
> .item-container {
|
|
@apply flex flex-col justify-start items-start w-full px-3 text-sm select-none leading-8 cursor-pointer rounded whitespace-nowrap dark:text-gray-200 hover:bg-gray-100 dark:hover:bg-zinc-600;
|
|
|
|
&.selected {
|
|
@apply text-green-600;
|
|
}
|
|
}
|
|
|
|
> .tip-text {
|
|
@apply px-3 py-1 text-sm text-gray-600;
|
|
}
|
|
}
|
|
|
|
> .selector-disabled {
|
|
@apply cursor-not-allowed;
|
|
@apply pointer-events-none;
|
|
|
|
@apply bg-gray-200 dark:bg-zinc-700 dark:border-zinc-600 text-gray-400;
|
|
}
|
|
}
|