diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-08 21:40:39 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-08 21:40:39 +0200 |
commit | 3b34cba4ae9846a7e1faf7353738a654d616abc6 (patch) | |
tree | 3ec8a41764df7069eb121de8504753ec1c27dff9 /core | |
parent | e153fb79bbfb74a832d1d6c4bdd4997f37923df5 (diff) | |
download | nextcloud-server-3b34cba4ae9846a7e1faf7353738a654d616abc6.tar.gz nextcloud-server-3b34cba4ae9846a7e1faf7353738a654d616abc6.zip |
first mediaplayer styling
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 4 | ||||
-rw-r--r-- | core/templates/installation.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 97352abb6c8..40f1602626b 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -1,5 +1,5 @@ * { margin:0; padding:0; border:0; outline:0; cursor:default; } -body { background:#fefefe; font:normal 80%/1.6em "Lucida Grande", Arial, Verdana, sans-serif; color:#000; } +body { background:#fefefe; font:normal 80%/1.6em "Lucida Grande", Arial, Verdana, sans-serif; color:#000; margin-bottom:2em; } /* HEADERS */ @@ -54,7 +54,7 @@ border:1px solid #ddd; font-weight:bold; cursor:pointer; background:#f2f2f2; col legend { padding:.2em; font-size:1.2em; } .template{display:none;} -div.controls { width:100%; height:3em; margin:0; background-color:#f7f7f7; border-bottom:1px solid #eee; position:fixed; z-index:2; } +#controls { width:100%; height:3em; margin:0; background-color:#f7f7f7; border-bottom:1px solid #eee; position:fixed; z-index:2; } /* LOG IN & INSTALLATION ------------------------------------------------------------ */ #body-login { background-color:#ddd; } diff --git a/core/templates/installation.php b/core/templates/installation.php index c5cf26bf129..08a8cf1609f 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -20,14 +20,14 @@ <legend><?php echo $l->t( 'Create an <strong>admin account</strong>' ); ?></legend> <input type="text" name="adminlogin" id="adminlogin" value="<?php print OC_Helper::init_var('adminlogin'); ?>" placeholder="<?php echo $l->t( 'Username' ); ?>" autofocus /></p> <input type="password" name="adminpass" id="adminpass" value="<?php print OC_Helper::init_var('adminpass'); ?>" placeholder="<?php echo $l->t( 'Password' ); ?>" /></p> -</fieldset> + </fieldset> <a id='showAdvanced'><strong><?php echo $l->t( 'Advanced' ); ?> ▾</strong></a> <fieldset id='datadirField'> <legend><?php echo $l->t( 'Set data folder' ); ?></legend> <input type="text" name="directory" id="directory" value="<?php print OC_Helper::init_var('directory', $_['directory']); ?>" placeholder="<?php echo $l->t( 'Data folder' ); ?>" /></p> - </fieldset> +</fieldset> <fieldset id='databaseField'> <legend><?php echo $l->t( 'Configure the database' ); ?></legend> |