| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /* Style 2 */
- .style2 .sch-gantt-label-left
- {
- background: none repeat scroll 0 0 white;
- color: black;
- opacity: 0.3;
- filter:alpha(opacity=50);
- padding: 2px 13px;
- white-space: nowrap;
- -moz-border-radius: 14px;
- -webkit-border-radius: 14px;
- border-radius: 14px;
- zoom:1;
- font-weight:bold;
- border: 1px solid #AAAAAA;
- }
- .style2 .sch-gantt-label-left:hover
- {
- opacity: 0.6;
- filter:alpha(opacity=70);
- }
- .style2 .sch-gantt-parenttask-arrow
- {
- border-color: #AAAAAA transparent transparent;
- }
- .style2 .sch-gantt-parenttask-bar
- {
- -webkit-box-shadow: 1px 1px 3px rgba(100, 100, 100, 0.5);
- -moz-box-shadow: 1px 1px 3px rgba(100, 100, 100, 0.5);
- border: 1px solid #AAAAAA;
- background: #E5ECF5;
- }
- .style2 .sch-gantt-parenttask-bar .sch-gantt-progress-bar
- {
- background:#ababab url(../images/transp-1px.png) repeat-x;
- }
- .style2 .sch-gantt-task-bar
- {
- border-color:goldenrod;
- -webkit-box-shadow: 1px 1px 3px rgba(100, 100, 100, 0.5);
- -moz-box-shadow: 1px 1px 3px rgba(100, 100, 100, 0.5);
- -moz-border-radius: 0;
- -webkit-border-radius: 0;
- position:relative;
- }
- .style2 .sch-dependency-line {
- border: 1px dotted SlateGray;
- }
-
- .style2 .sch-gantt-milestone-diamond
- {
- background-position:0 -48px;
- }
- .style2 .sch-gantt-task-bar .sch-gantt-progress-bar
- {
- background:Peru url(../images/transp-1px.png) repeat-x;
- }
- .style2 .x-grid-inner-locked .x-grid-view
- {
- background:LightYellow !important;
- }
- .x-gecko .style2 .sch-ganttview
- {
- background:-moz-linear-gradient(90deg, rgba(166, 216, 166, 0.65), rgba(255, 255, 255, 0.95)) repeat scroll 0 0 transparent
- }
- .x-webkit .style2 .sch-ganttview
- {
- background: -webkit-gradient(linear, left top, left bottom, from(rgba(166, 216, 166, 0.65)), to(rgba(255, 255, 255, 0.95)));
- }
- .style2 .sch-dependency-arrow-left
- {
- border-color: transparent slategray transparent transparent;
- }
- .style2 .sch-dependency-arrow-right
- {
- border-color: transparent transparent transparent slategray;
- }
- .style2 .sch-dependency-arrow-down
- {
- border-color: slategray transparent;
- }
|