PopinFixed.styl 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. @import '../../css/Variable.styl'
  2. .wsFileGeneric
  3. position fixed
  4. top 85px
  5. right 0
  6. border 1px solid grey
  7. height 100%
  8. background-color lightGrey
  9. box-shadow shadow-page
  10. visibility hidden
  11. z-index 1
  12. &.visible
  13. visibility visible
  14. &__header
  15. display flex
  16. align-items center
  17. padding 15px
  18. height 64px
  19. &__icon
  20. margin-right 15px
  21. font-size 22px
  22. color white
  23. &__title
  24. margin-right 15px
  25. color white
  26. text-overflow ellipsis
  27. overflow hidden
  28. white-space nowrap
  29. &__edittitle
  30. margin 0 15px
  31. color white
  32. font-size 20px
  33. cursor pointer
  34. &:hover , &:focus
  35. border 1px solid off-white
  36. padding 0 10px
  37. border-radius 5px
  38. &__close
  39. border 1px solid white
  40. border-radius 5px
  41. padding 2px 5px
  42. cursor pointer
  43. & > i
  44. color white
  45. font-size 20px
  46. &__option
  47. border-bottom 1px solid grey
  48. padding 10px
  49. height 58px
  50. background-color off-white
  51. & > i
  52. vertical-align middle
  53. margin-right 15px
  54. font-size 25px
  55. cursor pointer
  56. &__menu
  57. display flex
  58. align-items center
  59. &__status
  60. margin-right 20px
  61. .current
  62. color blue
  63. .check
  64. color green
  65. .invalid
  66. color red
  67. .ban
  68. color grey
  69. &__dropdownbtn
  70. border 1px solid grey
  71. width 150px
  72. background-color transparent
  73. cursor pointer
  74. &::after
  75. color fontColor
  76. &:hover
  77. background-color transparent
  78. &__icon
  79. display inline-block
  80. margin 0 15px
  81. &__submenu
  82. &__item
  83. display flex
  84. justify-content space-between
  85. margin 5px 0
  86. cursor pointer
  87. &:active
  88. background-color transparent
  89. &__action
  90. margin 5px 10px 0 0
  91. font-size 18px
  92. cursor pointer
  93. &:hover , &:focus
  94. font-size 22px
  95. color blue
  96. &__content
  97. display flex
  98. &__left
  99. width 55%
  100. &__right
  101. width 45%