diff options
Diffstat (limited to 'public/ng/less/ui')
-rw-r--r-- | public/ng/less/ui/alert.less | 14 | ||||
-rw-r--r-- | public/ng/less/ui/form.less | 17 | ||||
-rw-r--r-- | public/ng/less/ui/label.less | 8 | ||||
-rw-r--r-- | public/ng/less/ui/reset.less | 16 |
4 files changed, 28 insertions, 27 deletions
diff --git a/public/ng/less/ui/alert.less b/public/ng/less/ui/alert.less index a52bc7f9..606c1114 100644 --- a/public/ng/less/ui/alert.less +++ b/public/ng/less/ui/alert.less @@ -41,7 +41,15 @@ border: 1px solid darken(@alertOrangeColor,10%); background-color: lighten(@alertOrangeColor,45%); } - - - +.white-popup-block { + background: #FFF; + padding: 20px 30px; + text-align: left; + max-width: 650px; + margin: 40px auto; + position: relative; + p { + font-size: 14px; + } +} diff --git a/public/ng/less/ui/form.less b/public/ng/less/ui/form.less index 80d94866..4a681994 100644 --- a/public/ng/less/ui/form.less +++ b/public/ng/less/ui/form.less @@ -176,7 +176,6 @@ input[readonly] { margin-bottom: 1em; } } - .form-align { label, .form-label { @@ -189,10 +188,14 @@ input[readonly] { margin-bottom: 1em; } } - -label.req { - &:after { - content: "*"; - color: @labelRedColor; - } +label { + &.text-left { + text-align: left; + } + &.req { + &:after { + content: "*"; + color: @labelRedColor; + } + } }
\ No newline at end of file diff --git a/public/ng/less/ui/label.less b/public/ng/less/ui/label.less index a2a8a679..21a4c82d 100644 --- a/public/ng/less/ui/label.less +++ b/public/ng/less/ui/label.less @@ -16,11 +16,13 @@ .label-gray { background-color: @labelGrayColor; } - .label-green { - background-color: @labelGreenColor; + background-color: @labelGreenColor; + &:hover { + background-color: @btnHoverGreenColor; + color: #FFF; + } } - .label-orange { background-color: @labelOrangeColor; } diff --git a/public/ng/less/ui/reset.less b/public/ng/less/ui/reset.less index 36906ce5..0e7a50e4 100644 --- a/public/ng/less/ui/reset.less +++ b/public/ng/less/ui/reset.less @@ -193,22 +193,19 @@ code, kbd, pre, samp { - font-family: monospace, monospace; - font-size: 1em; + font-family: monospace, monospace; + font-size: 1em; } .text-left { text-align: left; } - .text-right { text-align: right; } - .text-center { text-align: center; } - .list-no-style { list-style: none; } @@ -342,15 +339,6 @@ hr { border-bottom: 1px solid @hrColor; margin-bottom: .75em; } - -// code element - -p { - code { - color: @inlineCodeColor; - } -} - // radius element .radius { |