diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-04 10:30:10 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-04 10:30:10 +0100 |
commit | c59ca9203df85d0001f57bf02a544c58f0c9a2d7 (patch) | |
tree | 5dc41137ad05614610b3b34fbbeece9c521e14f3 /core/css | |
parent | b162761124aed3673eac22212d95e1311fa919a9 (diff) | |
parent | 56b537271ef591446f952c834257ae8eaac7e255 (diff) | |
download | nextcloud-server-c59ca9203df85d0001f57bf02a544c58f0c9a2d7.tar.gz nextcloud-server-c59ca9203df85d0001f57bf02a544c58f0c9a2d7.zip |
Merge pull request #18821 from owncloud/global-classes
Global classes in core CSS
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/global.css | 50 | ||||
-rw-r--r-- | core/css/styles.css | 20 |
2 files changed, 50 insertions, 20 deletions
diff --git a/core/css/global.css b/core/css/global.css new file mode 100644 index 00000000000..9511d4324fa --- /dev/null +++ b/core/css/global.css @@ -0,0 +1,50 @@ +/* Copyright (c) 2015, Raghu Nayyar, http://raghunayyar.com + This file is licensed under the Affero General Public License version 3 or later. + See the COPYING-README file. */ + +/* Global Components */ + +.pull-left { + float: left; +} + +.pull-right { + float: right; +} + +.clear-left { + clear: left; +} + +.clear-right { + clear: right; +} + +.clear-both { + clear: both; +} + +.hidden { + display: none; +} + +.hidden-visually { + position: absolute; + left:-10000px; + top: auto; + width: 1px; + height: 1px; + overflow: hidden; +} + +.bold { + font-weight:600; +} + +.center { + text-align:center; +} + +.inlineblock { + display: inline-block; +}
\ No newline at end of file diff --git a/core/css/styles.css b/core/css/styles.css index ddf72a34db5..15325eada33 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -860,26 +860,6 @@ html.ie8 #body-login form input[type="checkbox"] { height: 70px; } - - - -/* VARIOUS REUSABLE SELECTORS */ -.hidden { - display: none; -} -.hidden-visually { - position: absolute; - left:-10000px; - top: auto; - width: 1px; - height: 1px; - overflow: hidden; -} - -.bold { font-weight:600; } -.center { text-align:center; } -.inlineblock { display: inline-block; } - /* round profile photos */ .avatar, .avatar img, |