some basic form work, need to lear more about custom form validation/rendering.
This commit is contained in:
parent
381cdc11a9
commit
10d9d13993
11 changed files with 791 additions and 619 deletions
|
@ -1,22 +1,99 @@
|
|||
#schedule-add-show,
|
||||
#fullcalendar_show_display {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#schedule-add-show {
|
||||
font-size: 12px;
|
||||
width: 600px;
|
||||
}
|
||||
|
||||
#schedule-add-show textarea {
|
||||
width: 100%;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
#fullcalendar_show_display {
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
#schedule-add-show-overlap {
|
||||
clear: left;
|
||||
}
|
||||
#schedule-add-show,
|
||||
#fullcalendar_show_display {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#schedule-add-show {
|
||||
font-size: 12px;
|
||||
width: 25%;
|
||||
min-width:340px;
|
||||
}
|
||||
|
||||
#schedule-add-show textarea {
|
||||
width: 99%;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
#fullcalendar_show_display {
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
#schedule-add-show-overlap {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
#schedule-add-show .ui-tabs-panel {
|
||||
padding-top: 16px;
|
||||
}
|
||||
#schedule-add-show fieldset {
|
||||
padding:8px;
|
||||
margin-bottom:8px;
|
||||
}
|
||||
|
||||
#schedule-add-show dl {
|
||||
padding:8px;
|
||||
margin-bottom:8px;
|
||||
margin:0;
|
||||
padding:0;
|
||||
width:100%;
|
||||
}
|
||||
#schedule-add-show dd {
|
||||
padding: 4px 0;
|
||||
float: left;
|
||||
font-size: 1.2em;
|
||||
margin: 0;
|
||||
padding: 4px 0 4px 15px;
|
||||
}
|
||||
#schedule-add-show dt, #schedule-add-show dt.big {
|
||||
clear: left;
|
||||
color: #666666;
|
||||
float: left;
|
||||
font-size: 1.2em;
|
||||
font-weight: bold;
|
||||
margin: 0;
|
||||
padding: 4px 0;
|
||||
text-align: left;
|
||||
min-width:90px;
|
||||
clear:left;
|
||||
}
|
||||
#schedule-add-show dt.big {
|
||||
min-width:130px;
|
||||
}
|
||||
#schedule-add-show dt.block-display, #schedule-add-show dd.block-display {
|
||||
display:block;
|
||||
float:none;
|
||||
margin-left:0;
|
||||
padding-left:0;
|
||||
}
|
||||
|
||||
#schedule-add-show dt label {
|
||||
padding-right:0;
|
||||
}
|
||||
.wrapp-label {
|
||||
padding:0;
|
||||
height:16px;
|
||||
display:block;
|
||||
line-height:18px;
|
||||
}
|
||||
label.wrapp-label input[type="checkbox"] {
|
||||
float:left;
|
||||
margin:-1px 4px 0 0;
|
||||
}
|
||||
#schedule-add-show fieldset {
|
||||
min-height:70px;
|
||||
}
|
||||
#schedule-add-show fieldset dd input[type="checkbox"] {
|
||||
margin-top:2px;
|
||||
}
|
||||
#add_show_day_check-element.block-display {
|
||||
margin-bottom:15px;
|
||||
margin-top:7px;
|
||||
}
|
||||
#add_show_day_check-element.block-display label.wrapp-label {
|
||||
font-size:12px;
|
||||
float:left;
|
||||
margin-right:5px;
|
||||
}
|
||||
#add_show_name-element .input_text {
|
||||
width:99%;
|
||||
}
|
File diff suppressed because it is too large
Load diff
|
@ -215,7 +215,7 @@
|
|||
background-image: url(images/ui-icons_ffffff_256x240.png);
|
||||
}
|
||||
.ui-widget-header .ui-icon {
|
||||
background-image: url(images/ui-icons_007fb3_256x240.png);
|
||||
background-image: url(images/ui-icons_ffffff_256x240.png);
|
||||
}
|
||||
.ui-state-default .ui-icon {
|
||||
background-image: url(images/ui-icons_ffffff_256x240.png);
|
||||
|
|
|
@ -41,6 +41,14 @@ select {
|
|||
z-index:1000;
|
||||
display:block;
|
||||
}
|
||||
|
||||
/* Clearfix */
|
||||
.clearfix:after, li:after { content: "."; display: block; height: 0; clear: both; visibility: hidden;}
|
||||
.clearfix, li { display: inline-block; }
|
||||
* html .clearfix, * html li { height: 1%;}
|
||||
.clearfix, li { display: block; }
|
||||
|
||||
|
||||
/* Master Panel */
|
||||
|
||||
#master-panel {
|
||||
|
@ -264,8 +272,12 @@ fieldset.plain {
|
|||
text-indent: 3px;
|
||||
width:auto;
|
||||
}
|
||||
|
||||
|
||||
.input_text_area {
|
||||
background:#dddddd url("images/input_bg.png") repeat-x scroll 0 0 ;
|
||||
border: 1px solid #5b5b5b;
|
||||
font-size: 13px;
|
||||
text-indent: 3px;
|
||||
}
|
||||
label {
|
||||
font-size:13px;
|
||||
color:#5b5b5b;
|
||||
|
@ -322,7 +334,6 @@ dl.inline-list dd {
|
|||
border: 1px solid #CCC;
|
||||
border-width: 0 0 0 1px !important;
|
||||
}
|
||||
|
||||
.datatable {
|
||||
border-color: #5b5b5b;
|
||||
border-style: solid;
|
||||
|
@ -338,16 +349,13 @@ dl.inline-list dd {
|
|||
.odd {
|
||||
background-color: #d8d8d8;
|
||||
}
|
||||
|
||||
.even {
|
||||
background-color:#c7c7c7;
|
||||
}
|
||||
|
||||
|
||||
.smartlist tr.even.selected td {
|
||||
.datatable tr.even.selected td {
|
||||
background-color: #abcfe2;
|
||||
}
|
||||
.smartlist tr.odd.selected td {
|
||||
.datatable tr.odd.selected td {
|
||||
background-color: #c5deeb;
|
||||
}
|
||||
.datatable tr:hover td {
|
||||
|
@ -368,4 +376,24 @@ dl.inline-list dd {
|
|||
}
|
||||
.dataTables_scroll .datatable {
|
||||
border-width: 0px 1px 0 1px;
|
||||
}
|
||||
}
|
||||
|
||||
/*----END Data Table----*/
|
||||
|
||||
fieldset {
|
||||
border: 1px solid #8f8f8f;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
fieldset.plain {
|
||||
border: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
input[type="checkbox"] {
|
||||
margin:0;
|
||||
outline:none;
|
||||
padding:0;
|
||||
width:13px;
|
||||
height:13px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue