Fixes save/publish button placement on small screens

This commit is contained in:
Shannon
2015-05-20 16:01:44 +10:00
parent 31b4560daa
commit a3b5996372

View File

@@ -37,11 +37,6 @@
bottom: 31px !important;
}
/*
.umb-tab-buttons.umb-bottom-bar {
bottom: 50px !important;
}*/
.umb-panel-header .umb-headline, .umb-panel-header h1 {
font-size: 16px;
border: none;
@@ -153,27 +148,34 @@
/* tab buttons */
.umb-bottom-bar{
background: white;
-webkit-box-shadow: 0px -18px 20px rgba(255, 255, 255, 1);
-moz-box-shadow: 0px -18px 20px rgba(255, 255, 255, 1);
box-shadow: 0px -18px 20px rgba(255, 255, 255, 1);
border-top: 1px solid @grayLighter;
padding: 10px 0 10px 0;
position: fixed;
bottom: 0px;
left: 100px;
right: 20px;
z-index: 6010;
};
@media (min-width: 1101px) {
.umb-bottom-bar {left: 460px;}
}
.umb-tab-buttons{padding-left: 240px;}
.umb-tab-buttons{
padding-left: 240px;
}
@media (min-width: 1101px) {
.umb-bottom-bar {
left: 460px;
}
}
@media (max-width: 767px) {
.umb-tab-buttons{
padding-left:0px;
}
}
.umb-tab-pane{padding-bottom: 90px}
.tab-content{overflow: visible; }