Commit 181b3b590490dacb26352d33298ecf686b931f73

Authored by Valessio Brito
2 parents c4f919fc 46492b9e

Merge branch 'form-style'

Showing 2 changed files with 38 additions and 0 deletions   Show diff stats
application2.css 0 → 100644
... ... @@ -0,0 +1,37 @@
  1 +.formfield input, .formfield textarea {
  2 + border: 1px solid #DFDFDF !important;
  3 + background-image: none !important;
  4 + background-color: #fff !important;
  5 + line-height: 1.8em !important;
  6 + color: #333 !important;
  7 + font-size: 13px !important;
  8 + outline: none !important;
  9 +}
  10 +
  11 +.formfield input:focus, .formfield textarea:focus {
  12 + border: 1px solid #AAA !important;
  13 + box-shadow: 1px 1px 2px rgba(0, 0, 0, .1) !important;
  14 +}
  15 +#article_name{
  16 + font-size: 18px !important;
  17 + color: #333 !important;
  18 +}
  19 +
  20 +.controller-cms div.with_media_panel {
  21 + width: 580px !important;
  22 +}
  23 +.text-editor-sidebar {
  24 + width: 300px !important;
  25 +}
  26 +
  27 +.text-editor-sidebar-box {
  28 + background: #f5f5f5 !important;
  29 + border: 1px solid #DFDFDF !important;
  30 +}
  31 +.text-editor-sidebar-box .header {
  32 + background-color: #F9F9F9 !important;
  33 +}
  34 +
  35 +.header{
  36 + background-image: linear-gradient(to top,#ECECEC,#F9F9F9);
  37 +}
... ...
style.css
1 1 @import url(../profile-base/style.css);
  2 +@import url(application2.css);
2 3  
3 4 /* Class all system */
4 5  
... ...