diff options
| author | Ofer Lehr <ofer@oferlehr.com> | 2014-12-07 20:49:31 +0200 |
|---|---|---|
| committer | Ofer Lehr <ofer@oferlehr.com> | 2014-12-07 20:49:31 +0200 |
| commit | 4fe0cdc072c30c816101e8879abde204702e314f (patch) | |
| tree | 382d246929fdd88dc5932f85777e008c3e0587f0 /res | |
| parent | 4e04cee22ef48093f1411d59c47a4a35e270a7dd (diff) | |
info card - new styling for url field
Diffstat (limited to 'res')
| -rw-r--r-- | res/css/partials/info-card.scss | 18 | ||||
| -rw-r--r-- | res/css/style.css | 16 |
2 files changed, 32 insertions, 2 deletions
diff --git a/res/css/partials/info-card.scss b/res/css/partials/info-card.scss index bf3e9f69..2b8efe20 100644 --- a/res/css/partials/info-card.scss +++ b/res/css/partials/info-card.scss @@ -77,11 +77,27 @@ margin: 12px 0px 24px 0px; } -#editbox .info-card-attr-val input{ +.info-card-attr-val input{ width: 100%; font-size: $h2-size; } +.info-card-url input{ + font-size: $h4-size; + margin-left: 20px; +} + +.info-card-url:before { //url icon before the url line + position: absolute; + margin-top: 7px; + content: ""; + background: url(../img/url-icon.png); + min-width: 14px; + min-height: 14px; + background-position: center; + background-repeat: no-repeat; +} + .select-dropdown { border: none; font-family: $base-font-family; diff --git a/res/css/style.css b/res/css/style.css index e7e27aa0..103eac49 100644 --- a/res/css/style.css +++ b/res/css/style.css @@ -496,10 +496,24 @@ body.debug .debug-ui-right { font-size: 24px; margin: 12px 0px 24px 0px; } -#editbox .info-card-attr-val input { +.info-card-attr-val input { width: 100%; font-size: 24px; } +.info-card-url input { + font-size: 14px; + margin-left: 20px; } + +.info-card-url:before { + position: absolute; + margin-top: 7px; + content: ""; + background: url(../img/url-icon.png); + min-width: 14px; + min-height: 14px; + background-position: center; + background-repeat: no-repeat; } + .select-dropdown { border: none; font-family: "Source_Regular", sans-serif; |
