diff options
author | friendica <info@friendica.com> | 2013-08-06 18:26:57 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-06 18:26:57 -0700 |
commit | 5d7a36649e9d1fc20d18b3de2a92bb8053f73b13 (patch) | |
tree | 65ce1ed6849d352359c40cb9fad4fb7e1e4dc400 /view/css | |
parent | 99bd0712b6170b337de6d1c31db7c66ad8a18767 (diff) | |
download | volse-hubzilla-5d7a36649e9d1fc20d18b3de2a92bb8053f73b13.tar.gz volse-hubzilla-5d7a36649e9d1fc20d18b3de2a92bb8053f73b13.tar.bz2 volse-hubzilla-5d7a36649e9d1fc20d18b3de2a92bb8053f73b13.zip |
wee bit of css cleanup
Diffstat (limited to 'view/css')
-rw-r--r-- | view/css/mod_admin.css | 63 | ||||
-rw-r--r-- | view/css/mod_setup.css | 34 |
2 files changed, 97 insertions, 0 deletions
diff --git a/view/css/mod_admin.css b/view/css/mod_admin.css new file mode 100644 index 000000000..6ceec3ac5 --- /dev/null +++ b/view/css/mod_admin.css @@ -0,0 +1,63 @@ + + +/** + * ADMIN + */ +#pending-update { + float:right; + color: #ffffff; + font-weight: bold; + background-color: #FF0000; + padding: 0em 0.3em; + +} +#adminpage dl { + clear: left; + margin-bottom: 2px; + padding-bottom: 2px; + border-bottom: 1px solid black; +} +#adminpage dt { + width: 200px; + float: left; + font-weight: bold; +} +#adminpage dd { + margin-left: 200px; +} + +#adminpage h3 { + border-bottom: 1px solid #cccccc; +} +#adminpage .field label { + font-weight: bold; +} +#adminpage .submit { + clear:left; + text-align: right; +} + +#adminpage #pluginslist { + margin: 0px; padding: 0px; +} +#adminpage .plugin { + list-style: none; + display: block; + border: 1px solid #888888; + padding: 1em; + margin-bottom: 5px; + clear: left; +} +#adminpage .plugin .desc { margin-left: 2.5em;} +#adminpage .toggleplugin { + float:left; + margin-right: 1em; +} + +#adminpage table {width:100%; border-bottom: 1px solid #000000; margin: 5px 0px;} +#adminpage table th { text-align: left;} +#adminpage td .icon { float: left;} +#adminpage table#users img { width: 16px; height: 16px; } +#adminpage table tr:hover { background-color: #bbc7d7; } +#adminpage .selectall { text-align: right; } + diff --git a/view/css/mod_setup.css b/view/css/mod_setup.css new file mode 100644 index 000000000..ee725d055 --- /dev/null +++ b/view/css/mod_setup.css @@ -0,0 +1,34 @@ +#install-dbhost-label, +#install-dbuser-label, +#install-dbpass-label, +#install-dbdata-label, +#install-tz-desc { + float: left; + width: 250px; + margin-top: 10px; + margin-bottom: 10px; + +} + +#install-dbhost, +#install-dbuser, +#install-dbpass, +#install-dbdata { + float: left; + width: 200px; + margin-left: 20px; +} + +#install-dbhost-end, +#install-dbuser-end, +#install-dbpass-end, +#install-dbdata-end, +#install-tz-end { + clear: both; +} + +#install-form select#timezone_select { + float: left; + margin-top: 18px; + margin-left: 20px; +} |