1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

add Dropdown for planet header menu

This commit is contained in:
Rokt33r
2015-07-10 17:52:58 +09:00
parent e467862c29
commit 9422825aec
3 changed files with 36 additions and 1 deletions

View File

@@ -217,6 +217,34 @@ textarea.block-input
padding 7px 25px padding 7px 25px
box-sizing border-box box-sizing border-box
line-height 30px line-height 30px
.dropDown
z-index 500
position fixed
background white
width 200px
border solid 1px borderColor
box-sizing border-box
margin-top -5px
margin-left 125px
box-shadow popupShadow
&.hide
visibility hidden
a
color textColor
display block
width 100%
padding 15px
box-sizing border-box
border-bottom solid 1px borderColor
text-decoration none
&:hover, &.hover
background-color hoverBackgroundColor
&:focus, &.focus
color black
&:active, &.active
color brandColor
&:last-child
border-bottom none
.PlanetBody .PlanetBody

View File

@@ -3,7 +3,7 @@
z-index 1000 z-index 1000
overflow-y auto overflow-y auto
overflow-x auto overflow-x auto
background-color transparentify(black, 35%) background-color modalBaseColor
&.hide &.hide
display none display none
.modal .modal
@@ -13,6 +13,7 @@
background-color white background-color white
border-radius 10px border-radius 10px
padding 15px padding 15px
box-shadow popupShadow
.modal-body .modal-body
.modal-tab .modal-tab
text-align center text-align center

View File

@@ -16,6 +16,9 @@ hoverBackgroundColor= transparentify(#444, 3%)
textColor = #4D4D4D textColor = #4D4D4D
backgroundColor= white backgroundColor= white
btnColor = #888
btnHighlightenColor = #000
brandColor = #2BAC8F brandColor = #2BAC8F
planetNavBgColor = #ECECEC planetNavBgColor = #ECECEC
@@ -23,3 +26,6 @@ planetAnchorColor = #979797
planetAnchorBgColor = #BEBEBE planetAnchorBgColor = #BEBEBE
planetAnchorActiveColor = textColor planetAnchorActiveColor = textColor
planetAnchorActiveBgColor = white planetAnchorActiveBgColor = white
popupShadow = 0 0 5px 0 #888
modalBaseColor = transparentify(white, 65%)