Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
Custimized Bootstrap Wells
3
***/
4
 
5
.well {
6
  border: 0;
7
  padding: 20px;
8
 
9
  @if $theme-type == "default" {
10
  		-webkit-box-shadow: none !important;
11
     	-moz-box-shadow: none !important;
12
          	box-shadow: none !important;
13
   }
14
}
15
 
16
@if $theme-type == "material-design" {
17
    .well {
18
        @extend .md-shadow-z-1;
19
        @include border-radius($general-border-radius);
20
    }
21
}