style-app.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. // import variables
  2. @import '../agile-admin/inverse/variables';
  3. @import 'variables';
  4. @import 'mixins';
  5. @import 'override-bootstrap-variables';
  6. // vendor
  7. @import 'vendor';
  8. // override react-bootstrap-typeahead styles
  9. @import 'override-rbt';
  10. // crowi component
  11. @import 'admin';
  12. @import 'attachments';
  13. @import 'comment';
  14. @import 'comment_crowi';
  15. @import 'comment_growi';
  16. @import 'comment_kibela';
  17. @import 'navbar_kibela';
  18. @import 'create-page';
  19. @import 'create-template';
  20. @import 'editor-attachment';
  21. @import 'editor-navbar';
  22. @import 'layout';
  23. @import 'layout_crowi';
  24. @import 'layout_crowi_sidebar';
  25. @import 'layout_growi';
  26. @import 'layout_kibela';
  27. @import 'login';
  28. @import 'notification';
  29. @import 'on-edit';
  30. @import 'page_list';
  31. @import 'page';
  32. @import 'page_growi';
  33. @import 'search';
  34. @import 'shortcuts';
  35. @import 'user';
  36. @import 'user_growi';
  37. @import 'handsontable';
  38. @import 'wiki';
  39. @import 'staff_credit';
  40. @import 'tag';
  41. @import 'staff_credit';
  42. @import 'draft';
  43. /*
  44. * for Guest User Mode
  45. */
  46. .dropdown-toggle.dropdown-toggle-disabled {
  47. cursor: not-allowed;
  48. }
  49. .edit-button.edit-button-disabled {
  50. cursor: not-allowed;
  51. }
  52. /*
  53. * Helper Classes
  54. */
  55. .picture {
  56. width: 24px;
  57. height: 24px;
  58. // size list
  59. &.picture-lg {
  60. width: 48px;
  61. height: 48px;
  62. }
  63. &.picture-md {
  64. width: 24px;
  65. height: 24px;
  66. }
  67. &.picture-sm {
  68. width: 18px;
  69. height: 18px;
  70. }
  71. &.picture-xs {
  72. width: 14px;
  73. height: 14px;
  74. }
  75. }
  76. // transplant from FontAwesome
  77. .icon-fw {
  78. display: inline-block;
  79. width: 1.4em;
  80. text-align: left;
  81. }
  82. .cmd-key.mac {
  83. &:after {
  84. content: '⌘';
  85. }
  86. }
  87. .cmd-key.win {
  88. &:after {
  89. content: 'Ctrl';
  90. }
  91. }