Skip to content

Commit f4bf240

Browse files
committed
Add Grid with Multiselect popup editing
1 parent abd0298 commit f4bf240

File tree

281 files changed

+84929
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

281 files changed

+84929
-0
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 300 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,300 @@
1+
/*----------------------------------------------------------
2+
The base color for this template is #5c87b2. If you'd like
3+
to use a different color start by replacing all instances of
4+
#5c87b2 with your new color.
5+
----------------------------------------------------------*/
6+
body
7+
{
8+
background-color: #5c87b2;
9+
font-size: 75%;
10+
font-family: Verdana, Tahoma, Arial, "Helvetica Neue", Helvetica, Sans-Serif;
11+
margin: 0;
12+
padding: 0;
13+
color: #696969;
14+
}
15+
16+
header,
17+
footer,
18+
nav,
19+
section
20+
{
21+
display: block;
22+
}
23+
24+
/* HEADINGS
25+
----------------------------------------------------------*/
26+
h1, h2, h3, h4, h5, h6
27+
{
28+
font-size: 1.5em;
29+
color: #000;
30+
}
31+
32+
h1
33+
{
34+
font-size: 2em;
35+
padding-bottom: 0;
36+
margin-bottom: 0;
37+
}
38+
h2
39+
{
40+
padding: 0 0 10px 0;
41+
}
42+
h3
43+
{
44+
font-size: 1.2em;
45+
}
46+
h4
47+
{
48+
font-size: 1.1em;
49+
}
50+
h5, h6
51+
{
52+
font-size: 1em;
53+
}
54+
55+
a
56+
{
57+
color: #696969;
58+
}
59+
60+
li
61+
{
62+
line-height: 1.6;
63+
}
64+
65+
/* this rule styles <h2> tags that are the
66+
first child of the left and right table columns */
67+
.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2
68+
{
69+
margin-top: 0;
70+
}
71+
72+
/* PRIMARY LAYOUT ELEMENTS
73+
----------------------------------------------------------*/
74+
75+
/* you can specify a greater or lesser percentage for the
76+
page width. Or, you can specify an exact pixel width. */
77+
.page
78+
{
79+
width: 90%;
80+
margin-left: auto;
81+
margin-right: auto;
82+
}
83+
84+
header, #header
85+
{
86+
position: relative;
87+
margin-bottom: 0px;
88+
color: #000;
89+
padding: 0;
90+
}
91+
92+
header h1, #header h1
93+
{
94+
font-weight: bold;
95+
padding: 5px 0;
96+
margin: 0;
97+
color: #fff;
98+
border: none;
99+
line-height: 2em;
100+
font-size: 32px !important;
101+
}
102+
103+
#main
104+
{
105+
background: #fff;
106+
padding: 30px 30px 15px 30px;
107+
margin-bottom: 30px;
108+
_height: 1px; /* only IE6 applies CSS properties starting with an underscore */
109+
}
110+
111+
footer, #footer
112+
{
113+
color: #999;
114+
padding: 10px 0;
115+
text-align: center;
116+
line-height: normal;
117+
margin: 0;
118+
font-size: .9em;
119+
}
120+
121+
/* MENU
122+
----------------------------------------------------------*/
123+
#menu
124+
{
125+
position: relative;
126+
margin: 0;
127+
text-align: right;
128+
}
129+
130+
#menu .t-item
131+
{
132+
border-width: 0 0 0 1px;
133+
}
134+
135+
#menu .t-link
136+
{
137+
padding: 5px 20px;
138+
font-weight: bold;
139+
text-decoration: none;
140+
line-height: 1.8em;
141+
}
142+
143+
/* FORM LAYOUT ELEMENTS
144+
----------------------------------------------------------*/
145+
146+
fieldset
147+
{
148+
border:1px solid #ddd;
149+
padding:0 1.4em 1.4em 1.4em;
150+
margin:0 0 1.5em 0;
151+
}
152+
153+
legend
154+
{
155+
font-size:1.2em;
156+
font-weight: bold;
157+
}
158+
159+
textarea
160+
{
161+
min-height: 75px;
162+
}
163+
164+
input[type="text"]
165+
{
166+
width: 200px;
167+
border: 1px solid #CCC;
168+
}
169+
170+
input[type="password"]
171+
{
172+
width: 200px;
173+
border: 1px solid #CCC;
174+
}
175+
176+
/* TABLE
177+
----------------------------------------------------------*/
178+
179+
table
180+
{
181+
border: solid 1px #e8eef4;
182+
border-collapse: collapse;
183+
}
184+
185+
table td
186+
{
187+
padding: 5px;
188+
border: solid 1px #e8eef4;
189+
}
190+
191+
table th
192+
{
193+
padding: 6px 5px;
194+
text-align: left;
195+
background-color: #e8eef4;
196+
border: solid 1px #e8eef4;
197+
}
198+
199+
/* MISC
200+
----------------------------------------------------------*/
201+
.clear
202+
{
203+
clear: both;
204+
}
205+
206+
.error
207+
{
208+
color:Red;
209+
}
210+
211+
div#title
212+
{
213+
display:block;
214+
text-align:left;
215+
}
216+
217+
#logindisplay
218+
{
219+
font-size:1.1em;
220+
display:block;
221+
text-align:right;
222+
margin:10px;
223+
color:White;
224+
}
225+
226+
#logindisplay a:link
227+
{
228+
color: white;
229+
text-decoration: underline;
230+
}
231+
232+
#logindisplay a:visited
233+
{
234+
color: white;
235+
text-decoration: underline;
236+
}
237+
238+
#logindisplay a:hover
239+
{
240+
color: white;
241+
text-decoration: none;
242+
}
243+
244+
/* Styles for validation helpers
245+
-----------------------------------------------------------*/
246+
.field-validation-error
247+
{
248+
color: #ff0000;
249+
}
250+
251+
.field-validation-valid
252+
{
253+
display: none;
254+
}
255+
256+
.input-validation-error
257+
{
258+
border: 1px solid #ff0000;
259+
background-color: #ffeeee;
260+
}
261+
262+
.validation-summary-errors
263+
{
264+
font-weight: bold;
265+
color: #ff0000;
266+
}
267+
268+
.validation-summary-valid
269+
{
270+
display: none;
271+
}
272+
273+
/* Styles for editor and display helpers
274+
----------------------------------------------------------*/
275+
.display-label,
276+
.editor-label
277+
{
278+
margin: 1em 0 0 0;
279+
}
280+
281+
.display-field,
282+
.editor-field
283+
{
284+
margin:0.5em 0 0 0;
285+
}
286+
287+
.text-box
288+
{
289+
width: 30em;
290+
}
291+
292+
.text-box.multi-line
293+
{
294+
height: 6.5em;
295+
}
296+
297+
.tri-state
298+
{
299+
width: 6em;
300+
}

grid/multiselect-in-grid-popup/MultiSelectInGrid/Content/kendo/2013.1.319/kendo.black.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

grid/multiselect-in-grid-popup/MultiSelectInGrid/Content/kendo/2013.1.319/kendo.blueopal.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

grid/multiselect-in-grid-popup/MultiSelectInGrid/Content/kendo/2013.1.319/kendo.bootstrap.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

grid/multiselect-in-grid-popup/MultiSelectInGrid/Content/kendo/2013.1.319/kendo.common.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

grid/multiselect-in-grid-popup/MultiSelectInGrid/Content/kendo/2013.1.319/kendo.dataviz.black.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

grid/multiselect-in-grid-popup/MultiSelectInGrid/Content/kendo/2013.1.319/kendo.dataviz.blueopal.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

grid/multiselect-in-grid-popup/MultiSelectInGrid/Content/kendo/2013.1.319/kendo.dataviz.bootstrap.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

grid/multiselect-in-grid-popup/MultiSelectInGrid/Content/kendo/2013.1.319/kendo.dataviz.default.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

grid/multiselect-in-grid-popup/MultiSelectInGrid/Content/kendo/2013.1.319/kendo.dataviz.highcontrast.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

grid/multiselect-in-grid-popup/MultiSelectInGrid/Content/kendo/2013.1.319/kendo.dataviz.metro.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

grid/multiselect-in-grid-popup/MultiSelectInGrid/Content/kendo/2013.1.319/kendo.dataviz.metroblack.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)