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-05-16 17:19:39 +03:00
|
|
|
@apply w-176 max-w-full mb-8 p-0;
|
2022-03-20 18:53:50 +03:00
|
|
|
|
|
|
|
> .dialog-content-container {
|
|
|
|
.flex(column, flex-start, flex-start);
|
2022-06-19 06:32:49 +03:00
|
|
|
@apply relative w-full overflow-y-scroll p-0 flex flex-col sm:flex-row justify-start items-start;
|
2022-03-20 18:53:50 +03:00
|
|
|
.hide-scroll-bar();
|
|
|
|
|
2022-05-04 07:05:50 +03:00
|
|
|
> .close-btn {
|
|
|
|
.flex(column, center, center);
|
2022-05-16 17:19:39 +03:00
|
|
|
@apply absolute top-4 right-4 w-6 h-6 rounded hover:bg-gray-200 hover:shadow;
|
2022-03-20 18:53:50 +03:00
|
|
|
|
2022-05-04 07:05:50 +03:00
|
|
|
> .icon-img {
|
|
|
|
@apply w-5 h-5;
|
2022-03-20 18:53:50 +03:00
|
|
|
}
|
2022-05-04 07:05:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
> .section-selector-container {
|
2022-06-19 06:32:49 +03:00
|
|
|
@apply w-full sm:w-40 h-auto sm:h-full shrink-0 rounded-t-lg 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-07-01 14:32:42 +03:00
|
|
|
@apply text-sm mt-2 sm:mt-4 first:mt-3 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 {
|
|
|
|
@apply text-base mr-1;
|
|
|
|
}
|
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 {
|
|
|
|
.flex(column, flex-start, flex-start);
|
|
|
|
@apply w-full my-2;
|
|
|
|
|
|
|
|
> .title-text {
|
2022-05-16 17:19:39 +03:00
|
|
|
@apply text-sm 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-06-19 06:32:49 +03:00
|
|
|
@apply flex flex-row justify-start 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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|