Blame view

framework/admin/scss/_uitheme.scss 2.24 KB
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
  /**
   * This file defines CMS-specific customizations to the jQuery UI theme.
   * Every rule should contain ONLY overwritten jQuery UI rules (with 'ui-' prefix).
   * 
   * This file should be fairly short, as we're using our own custom jQuery UI theme already.
   * TODO Add theme reference
   * 
   * Use _style.scss to add more generic style information,
   * and read the jQuery UI theming API: http://jqueryui.com/docs/Theming/API
   */
  
  .ui-widget-content,
  .ui-widget {
  	color: $color-text;
  	font-size: $font-base-size;
  	font-family: $font-family;
  	border: 0;
  }
  
  
  .ui-widget-header {			
  	background-color: darken($color-widget-bg, 20%);
  	padding: 8px 8px 6px 8px;	
  	border-bottom: 2px solid darken($color-widget-bg, 35%);
  	@include background-image(
  		linear-gradient(darken($color-widget-bg, 5%), darken($color-widget-bg, 30%))
  		);
  	border-bottom: 3px solid darken($color-widget-bg, 50%);
  	padding: 8px;	
  	@include border-radius(0);
  		
  	& .ui-dialog-title {
  		padding: 6px 10px;
  		text-shadow: lighten($color-base, 10%) 1px 1px 0;
  	}
  	
  	
  	
  	& a.ui-dialog-titlebar-close {
  		position:  absolute;
  		top: -8px;
  		right: -15px;
  		width: 30px;
  		height:  30px;
  		z-index: 100000;
  	}
  	
  	a.ui-state-hover {
  		border-color: transparent;
  		background: transparent;
  		
  		.ui-icon-closethick {
  			background: sprite($sprites32, dialog-close-over) no-repeat;
  		}
  	}
  	
  	.ui-icon-closethick {
  		background: sprite($sprites32, dialog-close) no-repeat;
  		width: 30px;
  		height:  30px;
  	}
  }
  
  .ui-state-hover {
  	cursor: pointer;
  }
  
  .ui-widget input, 
  .ui-widget select, 
  .ui-widget textarea, 
  .ui-widget button {
  	color: $color-text;
  	font-size: $font-base-size;
  	font-family: $font-family;
  }
  
  .ui-accordion {
  	.ui-accordion-header {
  		border-color: $color-button-generic-border;
  		margin-bottom: 0;
  	}
  	.ui-accordion-content {
  		border: 1px solid $color-button-generic-border;
  		border-top: none;
  	}
  }
  
  .ui-autocomplete {
  	max-height: 240px;
  	overflow-x: hidden;
  	overflow-y: auto;
  
  	/** sorry about the !important but the specificity of other selectors mandates it over writing out very specific selectors **/
  	&-loading {
  		background-image: url(../images/throbber.gif) !important;
  		background-position: 97% center !important;
  		background-repeat: no-repeat !important;
  		background-size: auto !important;
  	}
  }