diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2015-07-26 15:41:26 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2015-07-26 15:41:26 -0700 |
| commit | 9aee669886202be7035e6c6049fc71bc99dd3013 (patch) | |
| tree | 2fd5bf6de74f3d99270587ffb1833e4188a6373d /rt/share/static/css/freeside4/forms.css | |
| parent | ac20214d38d9af00430423f147b5a0e50751b050 (diff) | |
| parent | 1add633372bdca3cc7163c2ce48363fed3984437 (diff) | |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'rt/share/static/css/freeside4/forms.css')
| -rw-r--r-- | rt/share/static/css/freeside4/forms.css | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/rt/share/static/css/freeside4/forms.css b/rt/share/static/css/freeside4/forms.css new file mode 100644 index 000000000..a10da2b6b --- /dev/null +++ b/rt/share/static/css/freeside4/forms.css @@ -0,0 +1,104 @@ +/* These override the base titlebox rules in base/forms.css. They try not to + duplicate properties. */ + +div.results .titlebox, +div.error-titlebox { + border: none; + background: none; + font-weight: bold; +} + +div.results .titlebox-content { + border: 1px solid #aa9; + border-bottom: 2px solid #990; + border-right: 2px solid #990; + background: #ffc; +} + +div.results .titlebox-title .left { + border: solid #aa9; + border-width: 1px 1px 0 1px; +} + +div.error-titlebox .titlebox-title span.left { + border: none; + border-right: 2px solid #b00; + margin-left: 0; + padding-left: 2.3em; + background-color: #f00; + color: #fff; +} + +div.error-titlebox .titlebox-content { + background-color: #fcc; + padding: 1em; +} + +div#body>div.error { + background-color: #fcc; + padding: 1em; +} + +div.error .titlebox-title .widget a { + background-position: center -7px +} + +.button, +input[type=reset], +input[type=submit], +input[class=button], +button, +input, +select { font-size: 1.0em } + +.button, +.button:visited, +input[type=reset], +input[type=submit], +input[class=button], +button { + color: #fff; + background: #4868b3; + border: 1px solid #fff; + padding: 0.5em; +} + +.button:focus, +input.button:focus, +button:focus, +input[type=reset]:focus, +input[type=submit]:focus, +input[class=button]:focus, +.button:hover, +input.button:hover, +button:hover, +input[type=reset]:hover, +input[type=submit]:hover, +input[class=button]:hover { + background: #3D5B9D +} + +.button:active, +input.button:active, +button:active, +input[type=reset]:active, +input[type=submit]:active, +input[class=button]:active { + background: #1D3B7D +} + +.button, +input[type=reset], +input[type=submit], +input[class=button], +button { + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; + padding-left: 0.75em; + padding-right: 0.75em; +} + +.value { + font-size: 1em +} |
