Blame view

framework/scss/ComplexTableField_popup.scss 1.54 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
  html {
  	overflow-y: auto !important;
  }
  body {
  	height: 100%;
  }
  
  #ComplexTableField_Popup_DetailForm input.loading {
  	background: #fff url(../images/network-save.gif) left center no-repeat;
  	padding-left: 16px;
  }
  
  .PageControls {
  	padding: 5px;
  	width: 100%;
  
  	* {
  		vertical-align: middle;
  	}
  
  	.Left {
  		width: 33%;
  	}
  
  	.Count {
  		width: 33%;
  		text-align: center;
  	}
  
  	.Right {
  		width: 33%;
  		text-align: right;
  	}
  }
  
  .ComplexTableField_Popup {
  	td.hidden {
  		display: none;
  	}
  	th.HiddenField{
  		display: none;
  	}
  
  	span.right{
  		float: right;
  		clear: none;
  	}
  	span.left{
  		float: left;
  		clear: none;
  	}
  	form p.checkbox input {
  		margin:0pt 1px;
  	}
  	form ul.optionset {
  		margin: 0;
  		padding: 0;
  	}
  	form ul.optionset li {
  		margin: 4px 0;
  	}
  
  	form div.Actions input {
  		font-size: 11px;
  		margin-top: 10px;
  	}
  }
  
  /* Pagination */ 
  #ComplexTableField_Pagination,
  #ComplexTableField_Pagination * {
  	vertical-align: middle;
  }
  
  #ComplexTableField_Pagination {
  	margin-top: 10px;
  	margin-left: auto;
  	margin-right: auto;
  	font-size: 11px;
  
  	a {
  		/*font-size: 1.2em;*/
  		font-size: 13px;
  		font-weight: bold;
  		text-decoration: none;
  		width: 1px;
  		height: 1px;
  		margin: 1px;
  	}
  
  	a:hover {
  		background: none;
  	}
  
  	span {
  		display: inline;
  		font-weight: bold;
  		font-size: 15px;
  		color: #f00;
  	}
  
  	div {
  		display: inline;
  	}
  }
  
  #ComplexTableField_Pagination_Previous {
  	padding-right: 10px;
  }
  #ComplexTableField_Pagination_Next {
  	padding-left: 10px;
  }
  #ComplexTableField_Pagination_Next img,#ComplexTableField_Pagination_Previous img {
  	margin: 0 3px 2px;
  }