Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
Bootstrap Markdown
3
***/
4
 
5
.md-input {
6
  padding: 5px !important;
7
  border-bottom: 0 !important;
8
 
9
  @include border-radius(0 0 $general-border-radius $general-border-radius);
10
}
11
 
12
.md-editor {
13
 
14
  @include border-radius($general-border-radius);
15
 
16
    .btn-toolbar {
17
      margin-left: 0px;
18
 
19
      @include border-radius($general-border-radius $general-border-radius 0 0);
20
 
21
      .btn-group {
22
        .btn-sm.btn {
23
           padding-bottom: 3px;
24
        }
25
 
26
        .btn-primary {
27
          padding-top: 5px;
28
          padding-bottom: 7px;
29
        }
30
      }
31
    }
32
}
33
 
34
.md-editor.active {
35
  border: 1px solid #999999;
36
  -webkit-box-shadow: none !important;
37
     -moz-box-shadow: none !important;
38
          box-shadow: none !important;
39
}
40
 
41
/***
42
Error state for WYSIWYG Editors
43
***/
44
 
45
.has-error .md-editor {
46
  border: 1px solid $state-danger-border !important;
47
}
48
 
49
.has-success .md-editor {
50
  border: 1px solid $state-success-border !important;
51
}
52
 
53
.has-warning .md-editor {
54
  border: 1px solid $state-warning-border !important;
55
}