diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2016-12-29 17:26:23 -0500 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2016-12-29 17:26:23 -0500 |
| commit | 4590992c3670836d6d04293d855f05dee8e8c339 (patch) | |
| tree | ec734de1c551dedc9972f2f92b1ee9b812b6eaee /www/css | |
| parent | b8e3c2c1f15740f4de47298983083865b5754e39 (diff) | |
swipe left to flag/unflag events (archive/un-archive) - still some UI work to be done #388
Diffstat (limited to 'www/css')
| -rw-r--r-- | www/css/style.css | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/www/css/style.css b/www/css/style.css index 18a34314..ed8ac441 100644 --- a/www/css/style.css +++ b/www/css/style.css @@ -1172,7 +1172,36 @@ videogular div.event-time { top: -99999px; } - +.item-options .button{ + display: -webkit-box; + display: -moz-box; + display: -ms-inline-flexbox; + display: -webkit-inline-flex; + display: inline-flex; + -webkit-box-direction: normal; + -moz-box-direction: normal; + -webkit-box-orient: horizontal; + -moz-box-orient: horizontal; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + -webkit-flex-wrap: nowrap; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-pack: center; + -moz-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-align-content: center; + -ms-flex-line-pack: center; + align-content: center; + -webkit-box-align: center; + -moz-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; +} @media (min-width:600px) { .montage-time { |
