You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
630 B
32 lines
630 B
@import "../css3.less"; |
|
/* === Plus Button ==*/ |
|
.mblDomButtonGrayPlus { |
|
position: relative; |
|
width: 29px; |
|
height: 29px; |
|
} |
|
.mblDomButtonGrayPlus > div { /* horiz line */ |
|
position: absolute; |
|
top: 12px; |
|
left: 6px; |
|
width: 18px; |
|
height: 3px; |
|
margin: 0px; |
|
font-size: 1px; |
|
background-color: #848684; |
|
border-top: 1px solid #525152; |
|
border-radius: 2px; |
|
} |
|
.mblDomButtonGrayPlus > div > div { /* vert line */ |
|
position: absolute; |
|
top: -8px; |
|
left: 7px; |
|
width: 3px; |
|
height: 17px; |
|
margin: 0px; |
|
font-size: 1px; |
|
background-color: #848684; |
|
border-top: 1px solid #525152; |
|
border-left: 1px solid #808080; |
|
border-radius: 2px; |
|
}
|
|
|