2022-03-20 18:53:50 +03:00
|
|
|
@import "./mixin.less";
|
|
|
|
|
|
|
|
.setting-dialog {
|
2022-06-19 06:32:49 +03:00
|
|
|
@apply px-4;
|
|
|
|
|
2022-03-20 18:53:50 +03:00
|
|
|
> .dialog-container {
|
2022-07-05 17:09:11 +03:00
|
|
|
@apply w-180 max-w-full mb-8 p-0;
|
2022-03-20 18:53:50 +03:00
|
|
|
|
|
|
|
> .dialog-content-container {
|
2022-07-17 05:29:12 +03:00
|
|
|
@apply flex flex-col sm:flex-row justify-start items-start relative w-full overflow-y-scroll p-0;
|
2022-03-20 18:53:50 +03:00
|
|
|
.hide-scroll-bar();
|
|
|
|
|
2022-05-04 07:05:50 +03:00
|
|
|
> .close-btn {
|
2022-10-16 07:37:17 +03:00
|
|
|
@apply z-1 flex flex-col justify-center items-center absolute top-4 right-4 w-6 h-6 rounded bg-white hover:bg-gray-200 hover:shadow;
|
2022-05-04 07:05:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
> .section-selector-container {
|
2022-07-22 18:31:25 +03:00
|
|
|
@apply w-full sm:w-44 h-auto sm:h-full shrink-0 rounded-t-lg sm:rounded-none sm:rounded-l-lg p-4 border-r bg-gray-100 flex flex-col justify-start items-start;
|
2022-05-16 17:19:39 +03:00
|
|
|
|
|
|
|
> .section-title {
|
2022-08-27 03:57:29 +03:00
|
|
|
@apply text-sm mt-2 sm:mt-4 first:mt-4 mb-1 font-mono text-gray-400;
|
2022-05-16 17:19:39 +03:00
|
|
|
}
|
2022-05-04 07:05:50 +03:00
|
|
|
|
2022-06-22 14:52:06 +03:00
|
|
|
> .section-items-container {
|
2022-06-19 06:32:49 +03:00
|
|
|
@apply w-full h-auto flex flex-row sm:flex-col justify-start items-start;
|
2022-05-04 07:05:50 +03:00
|
|
|
|
2022-06-19 06:32:49 +03:00
|
|
|
> .section-item {
|
2022-07-01 14:32:42 +03:00
|
|
|
@apply flex flex-row justify-start items-center text-base select-none mr-3 sm:mr-0 mt-0 sm:mt-2 text-gray-700 cursor-pointer hover:opacity-80;
|
2022-06-22 14:52:06 +03:00
|
|
|
|
2022-06-19 06:32:49 +03:00
|
|
|
&.selected {
|
|
|
|
@apply font-bold hover:opacity-100;
|
|
|
|
}
|
2022-07-01 14:32:42 +03:00
|
|
|
|
|
|
|
> .icon-text {
|
2022-07-05 17:09:11 +03:00
|
|
|
@apply text-base mr-2;
|
2022-07-01 14:32:42 +03:00
|
|
|
}
|
2022-05-04 07:05:50 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .section-content-container {
|
2022-06-22 14:52:06 +03:00
|
|
|
@apply w-full sm:w-auto p-4 sm:px-6 grow flex flex-col justify-start items-start h-128 overflow-y-scroll;
|
2022-06-24 15:01:02 +03:00
|
|
|
.hide-scroll-bar();
|
2022-05-04 07:05:50 +03:00
|
|
|
|
|
|
|
> .section-container {
|
2022-07-17 05:29:12 +03:00
|
|
|
@apply flex flex-col justify-start items-start w-full my-2;
|
2022-05-04 07:05:50 +03:00
|
|
|
|
|
|
|
> .title-text {
|
2022-08-27 03:57:29 +03:00
|
|
|
@apply text-sm mt-4 first:mt-2 mb-3 font-mono text-gray-500;
|
2022-05-04 07:05:50 +03:00
|
|
|
}
|
2022-03-20 18:53:50 +03:00
|
|
|
|
2022-05-04 07:05:50 +03:00
|
|
|
> .form-label {
|
2022-08-25 15:44:32 +03:00
|
|
|
@apply flex flex-row items-center w-full mb-2;
|
2022-03-20 18:53:50 +03:00
|
|
|
|
2022-05-04 07:05:50 +03:00
|
|
|
> .normal-text {
|
2022-05-15 17:21:13 +03:00
|
|
|
@apply shrink-0 select-text;
|
2022-05-04 07:05:50 +03:00
|
|
|
}
|
2022-03-20 18:53:50 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|