mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
feature(css) add media-query for .cmd-button
This commit is contained in:
parent
6b1b8e1ebf
commit
3a91dc42c0
2 changed files with 14 additions and 0 deletions
|
|
@ -140,6 +140,8 @@ getJSONfromFileTable.
|
|||
|
||||
* feature(Events) dispatch: event -> event || eventName
|
||||
|
||||
* feature(css) add media-query for .cmd-button
|
||||
|
||||
|
||||
2012.04.22, v0.2.0
|
||||
|
||||
|
|
|
|||
|
|
@ -344,6 +344,10 @@ a:hover, a:active {
|
|||
width:100%;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.cmd-button {
|
||||
width: 20%;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 601px) and (max-width: 785px){
|
||||
.panel{
|
||||
|
|
@ -352,6 +356,10 @@ a:hover, a:active {
|
|||
#right{
|
||||
display:none;
|
||||
}
|
||||
|
||||
.cmd-button {
|
||||
width: 15%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width:786px) and (max-width: 1155px){
|
||||
|
|
@ -362,4 +370,8 @@ a:hover, a:active {
|
|||
#right{
|
||||
display:none;
|
||||
}
|
||||
|
||||
.cmd-button {
|
||||
width: 10%;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue