session.styl 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. .session
  2. width 100%
  3. display flex
  4. flex-direction column
  5. //flex-wrap wrap
  6. align-items stretch
  7. justify-content flex-start
  8. overflow auto
  9. padding-bottom 6px
  10. .device
  11. border-top 1px solid #303030
  12. border-left 1px solid #303030
  13. border-bottom 1px solid #101010
  14. border-right 1px solid #101010
  15. padding 6px 9px
  16. margin 6px 6px 0
  17. background rgba(32,32,32,0.95)
  18. flex-shrink 0
  19. &-header
  20. display flex
  21. flex-direction row
  22. justify-content space-between
  23. &-label
  24. background none
  25. border none
  26. border-bottom 1px dotted rgba(255,255,255,0.5)
  27. color white
  28. margin-bottom 3px
  29. font-size 14px
  30. &:hover, &:focus
  31. outline none
  32. background rgba(0,0,0,0.5)
  33. &-info, &-power
  34. display inline-block
  35. text-align center
  36. background #333
  37. line-height 18px
  38. vertical-align middle
  39. height 18px
  40. cursor pointer
  41. width 18px
  42. margin-left 6px
  43. &.active
  44. background #009b2a
  45. &-info
  46. font-size 16px
  47. &-icon
  48. display block
  49. &-dropdown
  50. cursor default
  51. font-size 11px
  52. z-index 2
  53. padding 6px 9px
  54. position absolute
  55. right -9px
  56. background #333
  57. box-shadow 0 3px 3px black
  58. display flex
  59. flex-direction column
  60. margin-top 7px
  61. border 1px solid black
  62. border-radius 3px
  63. &:before, &:after
  64. content ''
  65. position absolute
  66. bottom 100%
  67. right 8px
  68. height 9px
  69. width 0
  70. border-left 9px solid transparent
  71. border-right 9px solid transparent
  72. pointer-events none
  73. &:before
  74. border-bottom 9px solid black
  75. margin-bottom 1px
  76. &:after
  77. border-bottom 9px solid #333
  78. &-option
  79. width 100%
  80. display flex
  81. flex-direction row
  82. justify-content space-between
  83. &-label
  84. font-weight bold
  85. margin-right 9px
  86. &-value, &-button
  87. margin-left 9px
  88. &-button
  89. width 12px
  90. height 12px
  91. background #222
  92. margin-top 3px