1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-28 00:10:57 +01:00

Mobile Slowvote

Summary: Fixes T9180, removes the background color and wraps the text.

Test Plan: View on a shrunked Chrome.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T9180

Differential Revision: https://secure.phabricator.com/D13915
This commit is contained in:
Chad Little 2015-08-16 17:50:46 -07:00
parent e29255650c
commit 7187a5351e
2 changed files with 12 additions and 2 deletions

View file

@ -100,7 +100,7 @@ return array(
'rsrc/css/application/releeph/releeph-request-differential-create-dialog.css' => '8d8b92cd',
'rsrc/css/application/releeph/releeph-request-typeahead.css' => '667a48ae',
'rsrc/css/application/search/search-results.css' => '7dea472c',
'rsrc/css/application/slowvote/slowvote.css' => '7c27f0f9',
'rsrc/css/application/slowvote/slowvote.css' => '475b4bd2',
'rsrc/css/application/tokens/tokens.css' => '3d0f239e',
'rsrc/css/application/uiexample/example.css' => '528b19de',
'rsrc/css/core/core.css' => 'a76cefc9',
@ -741,7 +741,7 @@ return array(
'phabricator-search-results-css' => '7dea472c',
'phabricator-shaped-request' => '7cbe244b',
'phabricator-side-menu-view-css' => 'bec2458e',
'phabricator-slowvote-css' => '7c27f0f9',
'phabricator-slowvote-css' => '475b4bd2',
'phabricator-source-code-view-css' => '5e0178de',
'phabricator-standard-page-view' => '4d176b67',
'phabricator-textareautils' => '5c93c52c',

View file

@ -52,6 +52,10 @@
background-color: {$sh-bluebackground};
}
.device-phone .slowvote-bar {
display: none;
}
.slowvote-control-offset {
white-space: nowrap;
position: absolute;
@ -62,6 +66,12 @@
text-shadow: {$whitetextshadow};
}
.device-phone .slowvote-control-offset {
white-space: normal;
position: static;
padding: 0 4px 8px;
}
.slowvote-option-label-group {
margin: 0 0 12px;
}