Commit ae3c91f800a8ff5b1077befc0799aafc0a378240
1 parent
c03898a2
Exists in
fix_javascript
and in
1 other branch
Improving help's page form
Showing
1 changed file
with
48 additions
and
0 deletions
Show diff stats
style.css
... | ... | @@ -3018,3 +3018,51 @@ div.software-step-info div.current-step h3 { |
3018 | 3018 | li.folder-item:first-child { |
3019 | 3019 | border-top: 1px solid #ccc; |
3020 | 3020 | } |
3021 | + | |
3022 | +/***** Estilização do aviso de campos obrigatórios na página de edição da página de ajuda *****/ | |
3023 | + | |
3024 | +#content .main-content form p .required-field .pseudoformlabel { | |
3025 | + color: #FF0366; | |
3026 | + font-weight: 500; | |
3027 | +} | |
3028 | + | |
3029 | +#content .main-content form p .required-field { | |
3030 | + max-width: 520px; | |
3031 | + padding: 15px 20px; | |
3032 | + margin: 20px 0 30px 0; | |
3033 | + border: 1px dotted #ccc; | |
3034 | + border-left: 5px solid #FF0366; | |
3035 | + border-radius: 3px; | |
3036 | + display: block; | |
3037 | + background: #fff; | |
3038 | + line-height: 20px; | |
3039 | + font-size: 13px; | |
3040 | +} | |
3041 | + | |
3042 | +.main-block form { | |
3043 | + font-family: 'Open Sans', Arial, Helvetica, sans-serif; | |
3044 | + font-size: 14px; | |
3045 | +} | |
3046 | + | |
3047 | +#content .main-content form label.formlabel, | |
3048 | +#content .main-content form .article-translation-field { | |
3049 | + font-size: 14px; | |
3050 | + margin-bottom: 5px; | |
3051 | + color: #231f20; | |
3052 | +} | |
3053 | + | |
3054 | +#content .main-content form .article-translation-field { | |
3055 | + margin-top: 25px; | |
3056 | +} | |
3057 | + | |
3058 | +#content .main-content form .required-field .formlabel:after { | |
3059 | + color: #FF0366; | |
3060 | + font-weight: 500; | |
3061 | +} | |
3062 | + | |
3063 | +.text-editor-sidebar { | |
3064 | + margin-top: 20px; | |
3065 | + margin-left: 650px; | |
3066 | + max-height: 45px; | |
3067 | + overflow: hidden; | |
3068 | +} | |
3021 | 3069 | \ No newline at end of file | ... | ... |