diff options
author | Einar Egilsson <einar@einaregilsson.com> | 2015-09-14 15:20:31 +0000 |
---|---|---|
committer | Einar Egilsson <einar@einaregilsson.com> | 2015-09-14 15:20:31 +0000 |
commit | 8103176fe8343510570d7799fde1bc0135c973e1 (patch) | |
tree | f9de5b3f89ce04938adcd971024e2ecafa613330 | |
parent | 3b297278c9923ea21ad70603113fbdd260f5db73 (diff) |
CSS fixes
-rw-r--r-- | css/redirector.css | 111 | ||||
-rw-r--r-- | redirector.html | 16 |
2 files changed, 73 insertions, 54 deletions
diff --git a/css/redirector.css b/css/redirector.css index b29cbfb..31fb8cf 100644 --- a/css/redirector.css +++ b/css/redirector.css @@ -3,6 +3,7 @@ body { font-family: Arial, sans-serif; + font-size:14px; background:white; color:rgb(43, 38, 38); } @@ -223,6 +224,35 @@ input[type="radio"] { width:60px; } +.redirect-row h4 span.disabled-marker { + color:red !important; +} + +.move-up-btn, .move-down-btn { + width:35px !important; +} + + +.redirect-row label { + display:inline-block; + width:80px; + font-weight:bold; + text-align: right; +} + +.arrow { + font-size:18px; +} + +a.disabled:hover { + cursor:default; + color:#bbb !important; + border:solid 1px #bbb !important; + background:white !important; +} + +/* Popup form for deleting redirects */ + #delete-redirect-form { position: fixed; padding:10px; @@ -252,39 +282,12 @@ input[type="radio"] { } #delete-redirect-form div span { - display:inline-block; - width: 330px; - text-overflow: ellipsis; - overflow: hidden; - white-space: nowrap; - vertical-align: top; -} - -.redirect-row h4 span.disabled-marker { - color:red !important; -} - -.move-up-btn, .move-down-btn { - width:35px !important; -} - - -.redirect-row label { display:inline-block; - width:80px; - font-weight:bold; - text-align: right; -} - -.arrow { - font-size:18px; -} - -a.disabled:hover { - cursor:default; - color:#bbb !important; - border:solid 1px #bbb !important; - background:white !important; + width: 330px; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + vertical-align: top; } /* Edit form */ @@ -317,7 +320,6 @@ a.disabled:hover { margin-left:-350px; top:50%; margin-top:-258px; - font-size:12px; } .form-grid { @@ -334,36 +336,51 @@ a.disabled:hover { text-align: right; padding:6px; white-space: nowrap; - width:120px; + width:140px; vertical-align:top; } -.edit-example-result { +.input-cell { + padding-top:1px; +} + +.form-grid div input[type='text'] { + width:510px; + font-size:14px; +} + +.example-result { width:500px; display:inline-block; word-wrap:break-word; - margin-top:4px; + margin-top:5px; } .example-result-error { - margin-top:4px; + margin-top:5px; display:inline-block; } #unescape-matches, #escape-matches { - margin-top:5px; + margin-top:7px; + margin-left:0px; } -.form-grid div input[type='text'] { - width:510px; +.input-cell label { + display:block; } -.input-cell { - padding-top:2px; -} +#apply-to { + padding-top:3px; +} -.input-cell label { - display:block; +#apply-to label span { + position: relative; + top:1px; +} + +.input-cell label input { + margin-left:0px; } .error { @@ -408,7 +425,7 @@ a[ng-click] { #wildcardtype, #regextype { margin-right:10px; display:inline-block; - margin-top:1px; + margin-top:4px; } .button-container { @@ -417,6 +434,8 @@ a[ng-click] { padding-bottom:10px; } + + /* Footer with link */ footer { margin-top:30px; diff --git a/redirector.html b/redirector.html index 9f907cb..9ed22bf 100644 --- a/redirector.html +++ b/redirector.html @@ -79,7 +79,7 @@ </div> <div> <label>Example result:</label> - <div class="input-cell"><span class="error example-result-error" ng-show="redirect.error">{{redirect.error}}</span><span class="edit-example-result" ng-show="redirect.exampleResult">{{redirect.exampleResult}}</span></div> + <div class="input-cell"><span class="error example-result-error" ng-show="redirect.error">{{redirect.error}}</span><span class="example-result" ng-show="redirect.exampleResult">{{redirect.exampleResult}}</span></div> </div> </div> <div id="advanced-toggle"> @@ -101,8 +101,8 @@ </div> <div> <label>Apply to:</label> - <div class="input-cell"> - <label ng-repeat="(key,value) in requestTypes"><input type="checkbox" ng-checked="appliesTo(key)" ng-click="toggleApplies(key)">{{value}}</label> + <div class="input-cell" id="apply-to"> + <label ng-repeat="(key,value) in requestTypes"><input type="checkbox" ng-checked="appliesTo(key)" ng-click="toggleApplies(key)"><span>{{value}}</span></label> </div> </div> @@ -160,11 +160,11 @@ </div> </div> <div> - <a class="btn blue" ng-click="toggleDisabled(r)">{{r.disabled ? "Enable" : "Disable"}}</a> - <a class="btn green" ng-click="editRedirect($index)">Edit</a> - <a class="btn red" ng-click="confirmDeleteRedirect($index)">Delete</a> - <a class="btn grey move-up-btn" ng-class="{disabled:$first}" ng-click="moveUp($index)">▲</a> - <a class="btn grey move-down-btn" ng-class="{disabled:$last}" ng-click="moveDown($index)">▼</a> + <a class="btn medium blue" ng-click="toggleDisabled(r)">{{r.disabled ? "Enable" : "Disable"}}</a> + <a class="btn medium green" ng-click="editRedirect($index)">Edit</a> + <a class="btn medium red" ng-click="confirmDeleteRedirect($index)">Delete</a> + <a class="btn medium grey move-up-btn" ng-class="{disabled:$first}" ng-click="moveUp($index)">▲</a> + <a class="btn medium grey move-down-btn" ng-class="{disabled:$last}" ng-click="moveDown($index)">▼</a> </div> </div> </div> |