| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- @import '@growi/core-styles/scss/helpers/flex-expand';
- @import '@growi/core-styles/scss/helpers/rotate';
- @import 'mixins';
- // atoms
- @import 'atoms/custom_control';
- @import 'atoms/code';
- @import 'atoms/tag';
- @import 'atoms/tooltip';
- // molecules
- @import 'molecules/toastr';
- @import 'molecules/list-group-item';
- // @import 'molecules/duplicated-paths-table.scss';
- // organisms
- @import 'organisms/wiki';
- // // growi component
- @import 'editor';
- @import 'fonts';
- @import 'installer';
- @import 'layout';
- @import 'mirror_mode';
- @import 'modal';
- @import 'share-link';
- /*
- * for Guest User Mode
- */
- // TODO: reactify and replace with `grw-not-available-for-guest`
- .dropdown-toggle.dropdown-toggle-disabled {
- cursor: not-allowed;
- }
- // TODO: reactify and replace with `grw-not-available-for-guest`
- .edit-button.edit-button-disabled {
- cursor: not-allowed;
- }
- .grw-not-available-for-guest {
- cursor: not-allowed !important;
- }
- /*
- * Helper Classes
- */
- .mw-0 {
- min-width: 0;
- }
- .flex-basis-0 {
- flex-basis: 0;
- }
- .picture {
- width: 24px;
- height: 24px;
- // size list
- &.picture-lg {
- width: 48px;
- height: 48px;
- }
- &.picture-md {
- width: 24px;
- height: 24px;
- }
- &.picture-sm {
- width: 18px;
- height: 18px;
- }
- &.picture-xs {
- width: 14px;
- height: 14px;
- }
- }
- .cmd-key.mac {
- &:after {
- content: '⌘';
- }
- }
- .cmd-key.win {
- &:after {
- content: 'Ctrl';
- }
- }
- .grw-page-control-dropdown-item {
- display: flex !important;
- align-items: center;
- .grw-page-control-dropdown-icon {
- display: flex;
- justify-content: center;
- width: 25px;
- }
- }
|