settingBody.styl 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. .flex
  2. display: -webkit-box
  3. display: -moz-box
  4. display: -webkit-flex
  5. display: -moz-flex
  6. display: -ms-flexbox
  7. display: flex
  8. .setting-content
  9. color: #727479
  10. background: #dedede
  11. width 100%
  12. position: absolute;
  13. .content-title
  14. font-size 20px
  15. .content-body
  16. display flex
  17. padding-top 15px
  18. height 100%
  19. gap: 10px;
  20. .side-menu
  21. background-color: #f7f7f7;
  22. border: 1px solid #f0f0f0;
  23. border-radius: 4px;
  24. width: 250px;
  25. box-shadow: inset -1px -1px 3px rgba(0,0,0,.05);
  26. ul
  27. li
  28. margin: 0.1rem 0.2rem;
  29. &.active
  30. background #fff
  31. box-shadow 0 1px 2px rgba(0,0,0,0.15);
  32. &:hover
  33. background #fff
  34. box-shadow 0 1px 2px rgba(0,0,0,0.15);
  35. a
  36. @extends .flex
  37. padding: 1rem 0 1rem 1rem
  38. width: 100% - 5rem
  39. span
  40. font-size: 13px
  41. i
  42. margin-right: 20px
  43. .main-body
  44. -webkit-user-select: text // Safari 3.1+
  45. -moz-user-select: text // Firefox 2+
  46. -ms-user-select: text // IE 10+
  47. user-select: text // Standard syntax
  48. ul
  49. li
  50. padding: 0.5rem 0.5rem;
  51. a
  52. .is-checked
  53. border-bottom: 2px solid #2980b9;
  54. border-right: 2px solid #2980b9;
  55. span
  56. padding: 0 0.5rem
  57. .admin-announcement,
  58. .invite-people,
  59. .layout
  60. padding-left 20px;
  61. li
  62. min-width: 500px;
  63. ul.no-margin-bottom
  64. margin-bottom: 0;
  65. .bg-white
  66. a
  67. background #f7f7f7
  68. &.is-checked
  69. background #fff
  70. input[type=radio]
  71. margin: 4px
  72. .option
  73. @extends .flex
  74. -webkit-border-radius: 3px;
  75. border-radius: 3px;
  76. background: #fff;
  77. text-decoration: none;
  78. -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  79. box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  80. margin-top: 5px;
  81. padding: 5px;
  82. .title
  83. font-weight 700;
  84. margin-bottom 0.5rem;
  85. .description
  86. margin-bottom 0.5rem;
  87. .bg-white
  88. background #f9fbfc;
  89. .wekan-form-control.has-error
  90. border-color: #a94442;
  91. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  92. li.has-error
  93. color #a94442
  94. .form-group
  95. .wekan-form-control
  96. border-color: #a94442;
  97. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);