]> git.wh0rd.org - tt-rss.git/commitdiff
installer: use dijit styles
authorAndrew Dolgov <noreply@fakecake.org>
Wed, 12 Aug 2015 20:07:31 +0000 (23:07 +0300)
committerAndrew Dolgov <noreply@fakecake.org>
Wed, 12 Aug 2015 20:07:31 +0000 (23:07 +0300)
css/dijit.css
install/index.php

index 3621d2cc7ba37fd266f808280a9b4ef28de63386..f3fbc686e89b74856459ec3d145b2dcb972f75b3 100644 (file)
@@ -471,6 +471,7 @@ button[disabled],
        float  :right;
 }
 
+.claro select,
 .claro .dijitDownArrowButton.dijitSelect {
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
@@ -490,6 +491,8 @@ button[disabled],
        border-width : 0px;
 }
 
+.claro select,
+.claro textarea,
 .claro .input.input-text,
 .claro .dijitTextBox {
        display: inline-block;
@@ -504,11 +507,17 @@ button[disabled],
        border-radius: 4px;
        margin-bottom : 4px;
 }
+.claro textarea {
+       height : auto;
+}
 
+.claro select,
 .claro .input.input-text {
        height : 30px;
 }
 
+.claro textarea,
+.claro select,
 .claro .input.input-text,
 .claro .dijitTextBox,
 .claro .dijitSelect {
@@ -523,6 +532,7 @@ button[disabled],
        transition: border linear 0.2s, box-shadow linear 0.2s;
 }
 
+.claro select:focus,
 .claro .input.input-text:focus,
 .claro .dijitTextBox.dijitFocused,
 .claro .dijitSelect.dijitFocused {
@@ -617,4 +627,4 @@ button[disabled],
 
 .claro .dijitProgressBar .dijitProgressBarLabel {
        color : white;
-}
\ No newline at end of file
+}
index 3467655798e3cee6432b9d25d67667dcf4024bb7..e1858343660559b37f97e4b04625b1f71a2a5070 100644 (file)
@@ -8,7 +8,7 @@
        textarea { font-size : 12px; }
        </style>
 </head>
-<body>
+<body class="claro">
 
 <?php
 
 
 <fieldset>
        <label>Username</label>
-       <input required name="DB_USER" size="20" value="<?php echo $DB_USER ?>"/>
+       <input class="input input-text" required name="DB_USER" size="20" value="<?php echo $DB_USER ?>"/>
 </fieldset>
 
 <fieldset>
        <label>Password</label>
-       <input name="DB_PASS" size="20" type="password" value="<?php echo $DB_PASS ?>"/>
+       <input class="input input-text" name="DB_PASS" size="20" type="password" value="<?php echo $DB_PASS ?>"/>
 </fieldset>
 
 <fieldset>
        <label>Database name</label>
-       <input required name="DB_NAME" size="20" value="<?php echo $DB_NAME ?>"/>
+       <input class="input input-text" required name="DB_NAME" size="20" value="<?php echo $DB_NAME ?>"/>
 </fieldset>
 
 <fieldset>
        <label>Host name</label>
-       <input name="DB_HOST" size="20" value="<?php echo $DB_HOST ?>"/>
+       <input class="input input-text" name="DB_HOST" size="20" value="<?php echo $DB_HOST ?>"/>
        <span class="hint">If needed</span>
 </fieldset>
 
 <fieldset>
        <label>Port</label>
-       <input name="DB_PORT" type="number" size="20" value="<?php echo $DB_PORT ?>"/>
+       <input class="input input-text" name="DB_PORT" type="number" size="20" value="<?php echo $DB_PORT ?>"/>
        <span class="hint">Usually 3306 for MySQL or 5432 for PostgreSQL</span>
 </fieldset>
 
 
 <fieldset>
        <label>Tiny Tiny RSS URL</label>
-       <input type="url" name="SELF_URL_PATH" placeholder="<?php echo $SELF_URL_PATH; ?>" size="60" value="<?php echo $SELF_URL_PATH ?>"/>
+       <input class="input input-text" type="url" name="SELF_URL_PATH" placeholder="<?php echo $SELF_URL_PATH; ?>" size="60" value="<?php echo $SELF_URL_PATH ?>"/>
 </fieldset>