123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- .sidebar-expandbar
- position absolute
- left 0
- display none
- border 1px solid darkBlue
- border-top-width 2px
- padding 11px 15px
- background-color blue
- z-index 2
- &__icon
- font-size 18px
- text-align center
- cursor pointer
- &:hover
- color white
-
- .sidebar
- display none
- min-height 100%
- background-color secondColor
- z-index 1
-
- sidebar-width = 300px
- .sidebar-visible
- .sidebar-expandbar
- left sidebar-width
-
- .sidebar
- &__btnnewworkspace
- margin-top 40px
- padding 10px
- width 100%
- &__btn
- display block
- margin 0 auto
- padding 15px 30px
- &__navigation
- padding 0
- &__workspace
- flex-direction column
- &__item
- position relative
- margin-top 2px
- width sidebar-width
- background-color thirdColor
- cursor pointer
- &__number
- display inline-block
- padding 10px 0
- width 50px
- font-size 20px
- letter-spacing 2px
- text-align center
- background-color rgba(253,253,253,0.3)
- &__name
- display inline-block
- vertical-align top
- padding 10px 5px
- width 220px
- font-size 20px
- color white
- white-space nowrap
- overflow hidden
- text-overflow ellipsis
- &__icon
- display inline-block
- color white
- &__submenu
- margin-bottom 0
- padding-left 0
- height 0 // height is handled is js
- list-style none
- background-color fourthColor
- overflow hidden
- transition height 0.5s
- &__dropdown
- border-top 1px solid darkBlue
- &:hover
- background-color lightBlue
- &__showdropdown
- display inline-block
- padding 10px 15px
- .dropdown__icon
- display inline-block
- padding 10px 15px
- width 50px
- text-align center
- background-color rgba(253,253,253,0.3)
- font-size 20px
- .dropdown__title
- position relative
- display inline-block
- font-size 18px
- font-weight 400
- color darkGrey
- cursor pointer
- &::after //bootstrap override
- position absolute
- top 10px
- left 100%
- &__text
- display inline-block
- width 200px
- .dropdown__subdropdown
- margin 0
- border-radius 0
- padding 0
- .alignname
- display inline-block
- font-size 18px
- &__item
- cursor pointer
- border-top 1px solid darkBlue
- padding 13px 0
- &__iconfile
- padding-left 18px
- &__textfile
- margin-left 38px
|