FIX: Tweaks to mobile select posts UI

This commit is contained in:
Kane York 2015-08-20 13:59:32 -07:00
parent 7e8ee8e725
commit 9c92a491b5
2 changed files with 9 additions and 6 deletions

View File

@ -13,6 +13,12 @@ display: none !important; // can be removed if inline JS CSS is removed from com
display: none !important; // can be removed if inline JS CSS is removed from composer-popup display: none !important; // can be removed if inline JS CSS is removed from composer-popup
} }
input {
background: $secondary;
color: $primary;
border-color: choose-grey(15%);
}
#reply-control { #reply-control {
// used for upload link // used for upload link
.composer-bottom-right { .composer-bottom-right {
@ -128,9 +134,6 @@ display: none !important; // can be removed if inline JS CSS is removed from com
margin-top: 6px; margin-top: 6px;
width: 99%; width: 99%;
box-sizing: border-box; box-sizing: border-box;
background: $secondary;
color: $primary;
border-color: choose-grey(10%);
} }
.wmd-controls { .wmd-controls {
transition: top 0.3s ease; transition: top 0.3s ease;

View File

@ -399,11 +399,11 @@ iframe {
float: left; float: left;
width: 97%; width: 97%;
padding-left: 3%; padding-left: 3%;
background-color: dark-light-diff($tertiary, $secondary, 85%, -65%); background-color: srgb-scale($tertiary, $secondary, 15%);
.btn { .btn {
margin-bottom: 10px; margin-bottom: 10px;
color: $secondary; color: $secondary;
background: scale-color($tertiary, $lightness: 50%); background: $tertiary;
clear: both; clear: both;
} }
p { p {
@ -420,7 +420,7 @@ button.select-post {
position: absolute; position: absolute;
z-index: 401; // 400 is the reply-to tab z-index: 401; // 400 is the reply-to tab
left: 200px; left: 200px;
background-color: scale-color($tertiary, $lightness: 50%); background-color: srgb-scale($tertiary, $secondary, 60%);
color: $secondary; color: $secondary;
padding: 5px; padding: 5px;
} }