Changeset 12735
- Timestamp:
- 10/10/07 16:35:03 (1 year ago)
- Files:
-
- trunk/midcom/midcom.helper.datamanager2/static/jscript-calendar/calendar-blue.css (modified) (20 diffs)
- trunk/midcom/midcom.helper.datamanager2/static/jscript-calendar/calendar-blue2.css (modified) (21 diffs)
- trunk/midcom/midcom.helper.datamanager2/static/jscript-calendar/calendar-brown.css (modified) (19 diffs)
- trunk/midcom/midcom.helper.datamanager2/static/jscript-calendar/calendar-green.css (modified) (21 diffs)
- trunk/midcom/midcom.helper.datamanager2/static/jscript-calendar/calendar-win2k-1.css (modified) (19 diffs)
- trunk/midcom/midcom.helper.datamanager2/static/jscript-calendar/calendar-win2k-2.css (modified) (19 diffs)
- trunk/midcom/midcom.helper.datamanager2/static/jscript-calendar/calendar-win2k-cold-1.css (modified) (21 diffs)
- trunk/midcom/midcom.helper.datamanager2/static/jscript-calendar/calendar-win2k-cold-2.css (modified) (19 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/midcom.helper.datamanager2/static/jscript-calendar/calendar-blue.css
r2910 r12735 3 3 div.calendar { position: relative; } 4 4 5 .calendar, .calendar table { 5 div.calendar, 6 div.calendar table { 6 7 border: 1px solid #556; 7 8 font-size: 11px; … … 14 15 /* Header part -- contains navigation buttons and day names. */ 15 16 16 .calendar .button { /* "<<", "<", ">", ">>" buttons have this class */17 div.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */ 17 18 text-align: center; /* They are the navigation buttons */ 18 19 padding: 2px; /* Make the buttons seem like they're pressing */ 19 20 } 20 21 21 .calendar .nav {22 div.calendar .nav { 22 23 background: #778 url(menuarrow.gif) no-repeat 100% 100%; 23 24 } 24 25 25 .calendar thead .title { /* This holds the current "month, year" */26 div.calendar thead .title { /* This holds the current "month, year" */ 26 27 font-weight: bold; /* Pressing it will take you to the current date */ 27 28 text-align: center; … … 31 32 } 32 33 33 .calendar thead .headrow { /* Row <TR> containing navigation buttons */34 div.calendar thead .headrow { /* Row <TR> containing navigation buttons */ 34 35 background: #778; 35 36 color: #fff; 36 37 } 37 38 38 .calendar thead .daynames { /* Row <TR> containing the day names */39 div.calendar thead .daynames { /* Row <TR> containing the day names */ 39 40 background: #bdf; 40 41 } 41 42 42 .calendar thead .name { /* Cells <TD> containing the day names */43 div.calendar thead .name { /* Cells <TD> containing the day names */ 43 44 border-bottom: 1px solid #556; 44 45 padding: 2px; … … 47 48 } 48 49 49 .calendar thead .weekend { /* How a weekend day name shows in header */50 div.calendar thead .weekend { /* How a weekend day name shows in header */ 50 51 color: #a66; 51 52 } 52 53 53 .calendar thead .hilite { /* How do the buttons in header appear when hover */54 div.calendar thead .hilite { /* How do the buttons in header appear when hover */ 54 55 background-color: #aaf; 55 56 color: #000; … … 58 59 } 59 60 60 .calendar thead .active { /* Active (pressed) buttons in header */61 div.calendar thead .active { /* Active (pressed) buttons in header */ 61 62 background-color: #77c; 62 63 padding: 2px 0px 0px 2px; … … 65 66 /* The body part -- contains all the days in month. */ 66 67 67 .calendar tbody .day { /* Cells <TD> containing month days dates */68 div.calendar tbody .day { /* Cells <TD> containing month days dates */ 68 69 width: 2em; 69 70 color: #456; … … 71 72 padding: 2px 4px 2px 2px; 72 73 } 73 .calendar tbody .day.othermonth {74 div.calendar tbody .day.othermonth { 74 75 font-size: 80%; 75 76 color: #bbb; 76 77 } 77 .calendar tbody .day.othermonth.oweekend {78 div.calendar tbody .day.othermonth.oweekend { 78 79 color: #fbb; 79 80 } 80 81 81 .calendar table .wn {82 div.calendar table .wn { 82 83 padding: 2px 3px 2px 2px; 83 84 border-right: 1px solid #000; … … 85 86 } 86 87 87 .calendar tbody .rowhilite td {88 div.calendar tbody .rowhilite td { 88 89 background: #def; 89 90 } 90 91 91 .calendar tbody .rowhilite td.wn {92 div.calendar tbody .rowhilite td.wn { 92 93 background: #eef; 93 94 } 94 95 95 .calendar tbody td.hilite { /* Hovered cells <TD> */96 div.calendar tbody td.hilite { /* Hovered cells <TD> */ 96 97 background: #def; 97 98 padding: 1px 3px 1px 1px; … … 99 100 } 100 101 101 .calendar tbody td.active { /* Active (pressed) cells <TD> */102 div.calendar tbody td.active { /* Active (pressed) cells <TD> */ 102 103 background: #cde; 103 104 padding: 2px 2px 0px 2px; 104 105 } 105 106 106 .calendar tbody td.selected { /* Cell showing today date */107 div.calendar tbody td.selected { /* Cell showing today date */ 107 108 font-weight: bold; 108 109 border: 1px solid #000; … … 112 113 } 113 114 114 .calendar tbody td.weekend { /* Cells showing weekend days */115 div.calendar tbody td.weekend { /* Cells showing weekend days */ 115 116 color: #a66; 116 117 } 117 118 118 .calendar tbody td.today { /* Cell showing selected date */119 div.calendar tbody td.today { /* Cell showing selected date */ 119 120 font-weight: bold; 120 121 color: #00f; 121 122 } 122 123 123 .calendar tbody .disabled { color: #999; }124 125 .calendar tbody .emptycell { /* Empty cells (the best is to hide them) */124 div.calendar tbody .disabled { color: #999; } 125 126 div.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */ 126 127 visibility: hidden; 127 128 } 128 129 129 .calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */130 div.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */ 130 131 display: none; 131 132 } … … 133 134 /* The footer part -- status bar and "Close" button */ 134 135 135 .calendar tfoot .footrow { /* The <TR> in footer (only one right now) */136 div.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */ 136 137 text-align: center; 137 138 background: #556; … … 139 140 } 140 141 141 .calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */142 div.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */ 142 143 background: #fff; 143 144 color: #445; … … 146 147 } 147 148 148 .calendar tfoot .hilite { /* Hover style for buttons in footer */149 div.calendar tfoot .hilite { /* Hover style for buttons in footer */ 149 150 background: #aaf; 150 151 border: 1px solid #04f; … … 153 154 } 154 155 155 .calendar tfoot .active { /* Active (pressed) style for buttons in footer */156 div.calendar tfoot .active { /* Active (pressed) style for buttons in footer */ 156 157 background: #77c; 157 158 padding: 2px 0px 0px 2px; … … 160 161 /* Combo boxes (menus that display months/years for direct selection) */ 161 162 162 .calendar .combo {163 div.calendar .combo { 163 164 position: absolute; 164 165 display: none; … … 174 175 } 175 176 176 .calendar .combo .label,177 .calendar .combo .label-IEfix {178 text-align: center; 179 padding: 1px; 180 } 181 182 .calendar .combo .label-IEfix {177 div.calendar .combo .label, 178 div.calendar .combo .label-IEfix { 179 text-align: center; 180 padding: 1px; 181 } 182 183 div.calendar .combo .label-IEfix { 183 184 width: 4em; 184 185 } 185 186 186 .calendar .combo .hilite {187 div.calendar .combo .hilite { 187 188 background: #acf; 188 189 } 189 190 190 .calendar .combo .active {191 div.calendar .combo .active { 191 192 border-top: 1px solid #46a; 192 193 border-bottom: 1px solid #46a; … … 195 196 } 196 197 197 .calendar td.time {198 div.calendar td.time { 198 199 border-top: 1px solid #000; 199 200 padding: 1px 0px; … … 202 203 } 203 204 204 .calendar td.time .hour,205 .calendar td.time .minute,206 .calendar td.time .ampm {205 div.calendar td.time .hour, 206 div.calendar td.time .minute, 207 div.calendar td.time .ampm { 207 208 padding: 0px 3px 0px 4px; 208 209 border: 1px solid #889; … … 211 212 } 212 213 213 .calendar td.time .ampm {214 text-align: center; 215 } 216 217 .calendar td.time .colon {214 div.calendar td.time .ampm { 215 text-align: center; 216 } 217 218 div.calendar td.time .colon { 218 219 padding: 0px 2px 0px 3px; 219 220 font-weight: bold; 220 221 } 221 222 222 .calendar td.time span.hilite {223 div.calendar td.time span.hilite { 223 224 border-color: #000; 224 225 background-color: #667; … … 226 227 } 227 228 228 .calendar td.time span.active {229 div.calendar td.time span.active { 229 230 border-color: #f00; 230 231 background-color: #000; trunk/midcom/midcom.helper.datamanager2/static/jscript-calendar/calendar-blue2.css
r2910 r12735 3 3 div.calendar { position: relative; } 4 4 5 .calendar, .calendar table {5 div.calendar, .calendar table { 6 6 border: 1px solid #206A9B; 7 7 font-size: 11px; … … 14 14 /* Header part -- contains navigation buttons and day names. */ 15 15 16 .calendar .button { /* "<<", "<", ">", ">>" buttons have this class */16 div.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */ 17 17 text-align: center; /* They are the navigation buttons */ 18 18 padding: 2px; /* Make the buttons seem like they're pressing */ 19 19 } 20 20 21 .calendar .nav {21 div.calendar .nav { 22 22 background: #007ED1 url(menuarrow2.gif) no-repeat 100% 100%; 23 23 } 24 24 25 .calendar thead .title { /* This holds the current "month, year" */25 div.calendar thead .title { /* This holds the current "month, year" */ 26 26 font-weight: bold; /* Pressing it will take you to the current date */ 27 27 text-align: center; … … 31 31 } 32 32 33 .calendar thead tr { /* Row <TR> containing navigation buttons */33 div.calendar thead tr { /* Row <TR> containing navigation buttons */ 34 34 background: #007ED1; 35 35 color: #fff; 36 36 } 37 37 38 .calendar thead .daynames { /* Row <TR> containing the day names */38 div.calendar thead .daynames { /* Row <TR> containing the day names */ 39 39 background: #C7E1F3; 40 40 } 41 41 42 .calendar thead .name { /* Cells <TD> containing the day names */42 div.calendar thead .name { /* Cells <TD> containing the day names */ 43 43 border-bottom: 1px solid #206A9B; 44 44 padding: 2px; … … 47 47 } 48 48 49 .calendar thead .weekend { /* How a weekend day name shows in header */49 div.calendar thead .weekend { /* How a weekend day name shows in header */ 50 50 color: #a66; 51 51 } 52 52 53 .calendar thead .hilite { /* How do the buttons in header appear when hover */53 div.calendar thead .hilite { /* How do the buttons in header appear when hover */ 54 54 background-color: #34ABFA; 55 55 color: #000; … … 58 58 } 59 59 60 .calendar thead .active { /* Active (pressed) buttons in header */60 div.calendar thead .active { /* Active (pressed) buttons in header */ 61 61 background-color: #006AA9; 62 62 border: 1px solid #008AFF; … … 66 66 /* The body part -- contains all the days in month. */ 67 67 68 .calendar tbody .day { /* Cells <TD> containing month days dates */68 div.calendar tbody .day { /* Cells <TD> containing month days dates */ 69 69 width: 2em; 70 70 color: #456; … … 72 72 padding: 2px 4px 2px 2px; 73 73 } 74 .calendar tbody .day.othermonth {74 div.calendar tbody .day.othermonth { 75 75 font-size: 80%; 76 76 color: #bbb; 77 77 } 78 .calendar tbody .day.othermonth.oweekend {78 div.calendar tbody .day.othermonth.oweekend { 79 79 color: #fbb; 80 80 } 81 81 82 .calendar table .wn {82 div.calendar table .wn { 83 83 padding: 2px 3px 2px 2px; 84 84 border-right: 1px solid #000; … … 86 86 } 87 87 88 .calendar tbody .rowhilite td {88 div.calendar tbody .rowhilite td { 89 89 background: #def; 90 90 } 91 91 92 .calendar tbody .rowhilite td.wn {92 div.calendar tbody .rowhilite td.wn { 93 93 background: #F1F8FC; 94 94 } 95 95 96 .calendar tbody td.hilite { /* Hovered cells <TD> */96 div.calendar tbody td.hilite { /* Hovered cells <TD> */ 97 97 background: #def; 98 98 padding: 1px 3px 1px 1px; … … 100 100 } 101 101 102 .calendar tbody td.active { /* Active (pressed) cells <TD> */102 div.calendar tbody td.active { /* Active (pressed) cells <TD> */ 103 103 background: #cde; 104 104 padding: 2px 2px 0px 2px; 105 105 } 106 106 107 .calendar tbody td.selected { /* Cell showing today date */107 div.calendar tbody td.selected { /* Cell showing today date */ 108 108 font-weight: bold; 109 109 border: 1px solid #000; … … 113 113 } 114 114 115 .calendar tbody td.weekend { /* Cells showing weekend days */115 div.calendar tbody td.weekend { /* Cells showing weekend days */ 116 116 color: #a66; 117 117 } 118 118 119 .calendar tbody td.today { /* Cell showing selected date */119 div.calendar tbody td.today { /* Cell showing selected date */ 120 120 font-weight: bold; 121 121 color: #D50000; 122 122 } 123 123 124 .calendar tbody .disabled { color: #999; }125 126 .calendar tbody .emptycell { /* Empty cells (the best is to hide them) */124 div.calendar tbody .disabled { color: #999; } 125 126 div.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */ 127 127 visibility: hidden; 128 128 } 129 129 130 .calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */130 div.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */ 131 131 display: none; 132 132 } … … 134 134 /* The footer part -- status bar and "Close" button */ 135 135 136 .calendar tfoot .footrow { /* The <TR> in footer (only one right now) */136 div.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */ 137 137 text-align: center; 138 138 background: #206A9B; … … 140 140 } 141 141 142 .calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */142 div.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */ 143 143 background: #000; 144 144 color: #fff; … … 147 147 } 148 148 149 .calendar tfoot .hilite { /* Hover style for buttons in footer */149 div.calendar tfoot .hilite { /* Hover style for buttons in footer */ 150 150 background: #B8DAF0; 151 151 border: 1px solid #178AEB; … … 154 154 } 155 155 156 .calendar tfoot .active { /* Active (pressed) style for buttons in footer */156 div.calendar tfoot .active { /* Active (pressed) style for buttons in footer */ 157 157 background: #006AA9; 158 158 padding: 2px 0px 0px 2px; … … 161 161 /* Combo boxes (menus that display months/years for direct selection) */ 162 162 163 .calendar .combo {163 div.calendar .combo { 164 164 position: absolute; 165 165 display: none; … … 175 175 } 176 176 177 .calendar .combo .label,178 .calendar .combo .label-IEfix {179 text-align: center; 180 padding: 1px; 181 } 182 183 .calendar .combo .label-IEfix {177 div.calendar .combo .label, 178 div.calendar .combo .label-IEfix { 179 text-align: center; 180 padding: 1px; 181 } 182 183 div.calendar .combo .label-IEfix { 184 184 width: 4em; 185 185 } 186 186 187 .calendar .combo .hilite {187 div.calendar .combo .hilite { 188 188 background: #34ABFA; 189 189 border-top: 1px solid #46a; … … 192 192 } 193 193 194 .calendar .combo .active {194 div.calendar .combo .active { 195 195 border-top: 1px solid #46a; 196 196 border-bottom: 1px solid #46a; … … 199 199 } 200 200 201 .calendar td.time {201 div.calendar td.time { 202 202 border-top: 1px solid #000; 203 203 padding: 1px 0px; … … 206 206 } 207 207 208 .calendar td.time .hour,209 .calendar td.time .minute,210 .calendar td.time .ampm {208 div.calendar td.time .hour, 209 div.calendar td.time .minute, 210 div.calendar td.time .ampm { 211 211 padding: 0px 3px 0px 4px; 212 212 border: 1px solid #889; … … 215 215 } 216 216 217 .calendar td.time .ampm {218 text-align: center; 219 } 220 221 .calendar td.time .colon {217 div.calendar td.time .ampm { 218 text-align: center; 219 } 220 221 div.calendar td.time .colon { 222 222 padding: 0px 2px 0px 3px; 223 223 font-weight: bold; 224 224 } 225 225 226 .calendar td.time span.hilite {226 div.calendar td.time span.hilite { 227 227 border-color: #000; 228 228 background-color: #267DB7; … … 230 230 } 231 231 232 .calendar td.time span.active {232 div.calendar td.time span.active { 233 233 border-color: red; 234 234 background-color: #000; trunk/midcom/midcom.helper.datamanager2/static/jscript-calendar/calendar-brown.css
r2910 r12735 3 3 div.calendar { position: relative; } 4 4 5 .calendar, .calendar table { 5 div.calendar, 6 div.calendar table { 6 7 border: 1px solid #655; 7 8 font-size: 11px; … … 14 15 /* Header part -- contains navigation buttons and day names. */ 15 16 16 .calendar .button { /* "<<", "<", ">", ">>" buttons have this class */17 div.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */ 17 18 text-align: center; /* They are the navigation buttons */ 18 19 padding: 2px; /* Make the buttons seem like they're pressing */ 19 20 } 20 21 21 .calendar .nav {22 div.calendar .nav { 22 23 background: #edc url(menuarrow.gif) no-repeat 100% 100%; 23 24 } 24 25 25 .calendar thead .title { /* This holds the current "month, year" */26 div.calendar thead .title { /* This holds the current "month, year" */ 26 27 font-weight: bold; /* Pressing it will take you to the current date */ 27 28 text-align: center; … … 31 32 } 32 33 33 .calendar thead .headrow { /* Row <TR> containing navigation buttons */34 div.calendar thead .headrow { /* Row <TR> containing navigation buttons */ 34 35 background: #edc; 35 36 color: #000; 36 37 } 37 38 38 .calendar thead .name { /* Cells <TD> containing the day names */39 div.calendar thead .name { /* Cells <TD> containing the day names */ 39 40 border-bottom: 1px solid #655; 40 41 padding: 2px; … … 43 44 } 44 45 45 .calendar thead .weekend { /* How a weekend day name shows in header */46 div.calendar thead .weekend { /* How a weekend day name shows in header */ 46 47 color: #f00; 47 48 } 48 49 49 .calendar thead .hilite { /* How do the buttons in header appear when hover */50 div.calendar thead .hilite { /* How do the buttons in header appear when hover */ 50 51 background-color: #faa; 51 52 color: #000; … … 54 55 } 55 56 56 .calendar thead .active { /* Active (pressed) buttons in header */57 div.calendar thead .active { /* Active (pressed) buttons in header */ 57 58 background-color: #c77; 58 59 padding: 2px 0px 0px 2px; 59 60 } 60 61 61 .calendar thead .daynames { /* Row <TR> containing the day names */62 div.calendar thead .daynames { /* Row <TR> containing the day names */ 62 63 background: #fed; 63 64 } … … 65 66 /* The body part -- contains all the days in month. */ 66 67 67 .calendar tbody .day { /* Cells <TD> containing month days dates */68 div.calendar tbody .day { /* Cells <TD> containing month days dates */ 68 69 width: 2em; 69 70 text-align: right; 70 71 padding: 2px 4px 2px 2px; 71 72 } 72 .calendar tbody .day.othermonth {73 div.calendar tbody .day.othermonth { 73 74 font-size: 80%; 74 75 color: #bbb; 75 76 } 76 .calendar tbody .day.othermonth.oweekend {77 div.calendar tbody .day.othermonth.oweekend { 77 78 color: #fbb; 78 79 } 79 80 80 .calendar table .wn {81 div.calendar table .wn { 81 82 padding: 2px 3px 2px 2px; 82 83 border-right: 1px solid #000; … … 84 85 } 85 86 86 .calendar tbody .rowhilite td {87 div.calendar tbody .rowhilite td { 87 88 background: #ddf; 88 89 } 89 90 90 .calendar tbody .rowhilite td.wn {91 div.calendar tbody .rowhilite td.wn { 91 92 background: #efe; 92 93 } 93 94 94 .calendar tbody td.hilite { /* Hovered cells <TD> */95 div.calendar tbody td.hilite { /* Hovered cells <TD> */ 95 96 background: #ffe; 96 97 padding: 1px 3px 1px 1px; … … 98 99 } 99 100 100 .calendar tbody td.active { /* Active (pressed) cells <TD> */101 div.calendar tbody td.active { /* Active (pressed) cells <TD> */ 101 102 background: #ddc; 102 103 padding: 2px 2px 0px 2px; 103 104 } 104 105 105 .calendar tbody td.selected { /* Cell showing today date */106 div.calendar tbody td.selected { /* Cell showing today date */ 106 107 font-weight: bold; 107 108 border: 1px solid #000; … … 110 111 } 111 112 112 .calendar tbody td.weekend { /* Cells showing weekend days */113 div.calendar tbody td.weekend { /* Cells showing weekend days */ 113 114 color: #f00; 114 115 } 115 116 116 .calendar tbody td.today { font-weight: bold; }117 118 .calendar tbody .disabled { color: #999; }119 120 .calendar tbody .emptycell { /* Empty cells (the best is to hide them) */117 div.calendar tbody td.today { font-weight: bold; } 118 119 div.calendar tbody .disabled { color: #999; } 120 121 div.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */ 121 122 visibility: hidden; 122 123 } 123 124 124 .calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */125 div.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */ 125 126 display: none; 126 127 } … … 128 129 /* The footer part -- status bar and "Close" button */ 129 130 130 .calendar tfoot .footrow { /* The <TR> in footer (only one right now) */131 div.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */ 131 132 text-align: center; 132 133 background: #988; … … 134 135 } 135 136 136 .calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */137 div.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */ 137 138 border-top: 1px solid #655; 138 139 background: #dcb; … … 140 141 } 141 142 142 .calendar tfoot .hilite { /* Hover style for buttons in footer */143 div.calendar tfoot .hilite { /* Hover style for buttons in footer */ 143 144 background: #faa; 144 145 border: 1px solid #f40; … … 146 147 } 147 148 148 .calendar tfoot .active { /* Active (pressed) style for buttons in footer */149 div.calendar tfoot .active { /* Active (pressed) style for buttons in footer */ 149 150 background: #c77; 150 151 padding: 2px 0px 0px 2px; … … 153 154 /* Combo boxes (menus that display months/years for direct selection) */ 154 155 155 .calendar .combo {156 div.calendar .combo { 156 157 position: absolute; 157 158 display: none; … … 167 168 } 168 169 169 .calendar .combo .label,170 .calendar .combo .label-IEfix {170 div.calendar .combo .label, 171 div.calendar .combo .label-IEfix { 171 172 text-align: center; 172 173 padding: 1px; 173 174 } 174 175 175 .calendar .combo .label-IEfix {176 div.calendar .combo .label-IEfix { 176 177 width: 4em; 177 178 } 178 179 179 .calendar .combo .hilite {180 div.calendar .combo .hilite { 180 181 background: #fc8; 181 182 } 182 183 183 .calendar .combo .active {184 div.calendar .combo .active { 184 185 border-top: 1px solid #a64; 185 186 border-bottom: 1px solid #a64; … … 188 189 } 189 190 190 .calendar td.time {191 div.calendar td.time { 191 192 border-top: 1px solid #a88; 192 193 padding: 1px 0px; … … 195 196 } 196 197 197 .calendar td.time .hour,198 .calendar td.time .minute,199 .calendar td.time .ampm {198 div.calendar td.time .hour, 199 div.calendar td.time .minute, 200 div.calendar td.time .ampm { 200 201 padding: 0px 3px 0px 4px; 201 202 border: 1px solid #988; … … 204 205 } 205 206 206 .calendar td.time .ampm {207 text-align: center; 208 } 209 210 .calendar td.time .colon {207 div.calendar td.time .ampm { 208 text-align: center; 209 } 210 211 div.calendar td.time .colon { 211 212 padding: 0px 2px 0px 3px; 212 213 font-weight: bold; 213 214 } 214 215 215 .calendar td.time span.hilite {216 div.calendar td.time span.hilite { 216 217 border-color: #000; 217 218 background-color: #866; … … 219 220 } 220 221 221 .calendar td.time span.active {222 div.calendar td.time span.active { 222 223 border-color: #f00; 223 224 background-color: #000; trunk/midcom/midcom.helper.datamanager2/static/jscript-calendar/calendar-green.css
r2910 r12735 3 3 div.calendar { position: relative; } 4 4 5 .calendar, .calendar table { 5 div.calendar, 6 div.calendar table { 6 7 border: 1px solid #565; 7 8 font-size: 11px; … … 14 15 /* Header part -- contains navigation buttons and day names. */ 15 16 16 .calendar .button { /* "<<", "<", ">", ">>" buttons have this class */17 div.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */ 17 18 text-align: center; /* They are the navigation buttons */ 18 19 padding: 2px; /* Make the buttons seem like they're pressing */ … … 22 23 } 23 24 24 .calendar .nav {25 div.calendar .nav { 25 26 background: #676 url(menuarrow.gif) no-repeat 100% 100%; 26 27 } 27 28 28 .calendar thead .title { /* This holds the current "month, year" */29 div.calendar thead .title { /* This holds the current "month, year" */ 29 30 font-weight: bold; /* Pressing it will take you to the current date */ 30 31 text-align: center; … … 34 35 } 35 36 36 .calendar thead .headrow { /* Row <TR> containing navigation buttons */37 } 38 39 .calendar thead .name { /* Cells <TD> containing the day names */37 div.calendar thead .headrow { /* Row <TR> containing navigation buttons */ 38 } 39 40 div.calendar thead .name { /* Cells <TD> containing the day names */ 40 41 border-bottom: 1px solid #565; 41 42 padding: 2px; … … 44 45 } 45 46 46 .calendar thead .weekend { /* How a weekend day name shows in header */47 div.calendar thead .weekend { /* How a weekend day name shows in header */ 47 48 color: #a66; 48 49 } 49 50 50 .calendar thead .hilite { /* How do the buttons in header appear when hover */51 div.calendar thead .hilite { /* How do the buttons in header appear when hover */ 51 52 background-color: #afa; 52 53 color: #000; … … 55 56 } 56 57 57 .calendar thead .active { /* Active (pressed) buttons in header */58 div.calendar thead .active { /* Active (pressed) buttons in header */ 58 59 background-color: #7c7; 59 60 padding: 2px 0px 0px 2px; 60 61 } 61 62 62 .calendar thead .daynames { /* Row <TR> containing the day names */63 div.calendar thead .daynames { /* Row <TR> containing the day names */ 63 64 background: #dfb; 64 65 } … … 66 67 /* The body part -- contains all the days in month. */ 67 68 68 .calendar tbody .day { /* Cells <TD> containing month days dates */69 div.calendar tbody .day { /* Cells <TD> containing month days dates */ 69 70 width: 2em; 70 71 color: #564; … … 72 73 padding: 2px 4px 2px 2px; 73 74 } 74 .calendar tbody .day.othermonth {75 div.calendar tbody .day.othermonth { 75 76 font-size: 80%; 76 77 color: #bbb; 77 78 } 78 .calendar tbody .day.othermonth.oweekend {79 div.calendar tbody .day.othermonth.oweekend { 79 80 color: #fbb; 80 81 } 81 82 82 .calendar table .wn {83 div.calendar table .wn { 83 84 padding: 2px 3px 2px 2px; 84 85 border-right: 1px solid #8a8; … … 86 87 } 87 88 88 .calendar tbody .rowhilite td {89 div.calendar tbody .rowhilite td { 89 90 background: #dfd; 90 91 } 91 92 92 .calendar tbody .rowhilite td.wn {93 div.calendar tbody .rowhilite td.wn { 93 94 background: #efe; 94 95 } 95 96 96 .calendar tbody td.hilite { /* Hovered cells <TD> */97 div.calendar tbody td.hilite { /* Hovered cells <TD> */ 97 98 background: #efd; 98 99 padding: 1px 3px 1px 1px; … … 100 101 } 101 102 102 .calendar tbody td.active { /* Active (pressed) cells <TD> */103 div.calendar tbody td.active { /* Active (pressed) cells <TD> */ 103 104 background: #dec; 104 105 padding: 2px 2px 0px 2px; 105 106 } 106 107 107 .calendar tbody td.selected { /* Cell showing today date */108 div.calendar tbody td.selected { /* Cell showing today date */ 108 109 font-weight: bold; 109 110 border: 1px solid #000; … … 113 114 } 114 115 115 .calendar tbody td.weekend { /* Cells showing weekend days */116 div.calendar tbody td.weekend { /* Cells showing weekend days */ 116 117 color: #a66; 117 118 } 118 119 119 .calendar tbody td.today { font-weight: bold; color: #0a0; }120 121 .calendar tbody .disabled { color: #999; }122 123 .calendar tbody .emptycell { /* Empty cells (the best is to hide them) */120 div.calendar tbody td.today { font-weight: bold; color: #0a0; } 121 122 div.calendar tbody .disabled { color: #999; } 123 124 div.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */ 124 125 visibility: hidden; 125 126 } 126 127 127 .calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */128 div.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */ 128 129 display: none; 129 130 } … … 131 132 /* The footer part -- status bar and "Close" button */ 132 133 133 .calendar tfoot .footrow { /* The <TR> in footer (only one right now) */134 div.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */ 134 135 text-align: center; 135 136 background: #565; … … 137 138 } 138 139 139 .calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */140 div.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */ 140 141 padding: 2px; 141 142 background: #250; … … 143 144 } 144 145 145 .calendar tfoot .hilite { /* Hover style for buttons in footer */146 div.calendar tfoot .hilite { /* Hover style for buttons in footer */ 146 147 background: #afa; 147 148 border: 1px solid #084; … … 150 151 } 151 152 152 .calendar tfoot .active { /* Active (pressed) style for buttons in footer */153 div.calendar tfoot .active { /* Active (pressed) style for buttons in footer */ 153 154 background: #7c7; 154 155 padding: 2px 0px 0px 2px; … … 157 158 /* Combo boxes (menus that display months/years for direct selection) */ 158 159 159 .calendar .combo {160 div.calendar .combo { 160 161 position: absolute; 161 162 display: none; … … 171 172 } 172 173 173 .calendar .combo .label,174 .calendar .combo .label-IEfix {174 div.calendar .combo .label, 175 div.calendar .combo .label-IEfix { 175 176 text-align: center; 176 177 padding: 1px; 177 178 } 178 179 179 .calendar .combo .label-IEfix {180 div.calendar .combo .label-IEfix { 180 181 width: 4em; 181 182 } 182 183 183 .calendar .combo .hilite {184 div.calendar .combo .hilite { 184 185 background: #af8; 185 186 } 186 187 187 .calendar .combo .active {188 div.calendar .combo .active { 188 189 border-top: 1px solid #6a4; 189 190 border-bottom: 1px solid #6a4; … … 192 193 } 193 194 194 .calendar td.time {195 div.calendar td.time { 195 196 border-top: 1px solid #8a8; 196 197 padding: 1px 0px; … … 199 200 } 200 201 201 .calendar td.time .hour,202 .calendar td.time .minute,203 .calendar td.time .ampm {202 div.calendar td.time .hour, 203 div.calendar td.time .minute, 204 div.calendar td.time .ampm { 204 205 padding: 0px 3px 0px 4px; 205 206 border: 1px solid #898; … … 208 209 } 209 210 210 .calendar td.time .ampm {211 text-align: center; 212 } 213 214 .calendar td.time .colon {211 div.calendar td.time .ampm { 212 text-align: center; 213 } 214 215 div.calendar td.time .colon { 215 216 padding: 0px 2px 0px 3px; 216 217 font-weight: bold; 217 218 } 218 219 219 .calendar td.time span.hilite {220 div.calendar td.time span.hilite { 220 221 border-color: #000; 221 222 background-color: #686; … … 223 224 } 224 225 225 .calendar td.time span.active {226 div.calendar td.time span.active { 226 227 border-color: #f00; 227 228 background-color: #000; trunk/midcom/midcom.helper.datamanager2/static/jscript-calendar/calendar-win2k-1.css
r2910 r12735 1 1 /* The main calendar widget. DIV containing a table. */ 2 2 3 .calendar {3 div.calendar { 4 4 position: relative; 5 5 display: none; … … 15 15 } 16 16 17 .calendar table {17 div.calendar table { 18 18 border-top: 1px solid #000; 19 19 border-right: 1px solid #fff; … … 29 29 /* Header part -- contains navigation buttons and day names. */ 30 30 31 .calendar .button { /* "<<", "<", ">", ">>" buttons have this class */32 text-align: center; 33 padding: 1px; 34 border-top: 1px solid #fff; 35 border-right: 1px solid #000; 36 border-bottom: 1px solid #000; 37 border-left: 1px solid #fff; 38 } 39 40 .calendar .nav {31 div.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */ 32 text-align: center; 33 padding: 1px; 34 border-top: 1px solid #fff; 35 border-right: 1px solid #000; 36 border-bottom: 1px solid #000; 37 border-left: 1px solid #fff; 38 } 39 40 div.calendar .nav { 41 41 background: transparent url(menuarrow.gif) no-repeat 100% 100%; 42 42 } 43 43 44 .calendar thead .title { /* This holds the current "month, year" */44 div.calendar thead .title { /* This holds the current "month, year" */ 45 45 font-weight: bold; 46 46 padding: 1px; … … 51 51 } 52 52 53 .calendar thead .headrow { /* Row <TR> containing navigation buttons */54 } 55 56 .calendar thead .daynames { /* Row <TR> containing the day names */57 } 58 59 .calendar thead .name { /* Cells <TD> containing the day names */53 div.calendar thead .headrow { /* Row <TR> containing navigation buttons */ 54 } 55 56 div.calendar thead .daynames { /* Row <TR> containing the day names */ 57 } 58 59 div.calendar thead .name { /* Cells <TD> containing the day names */ 60 60 border-bottom: 1px solid #000; 61 61 padding: 2px; … … 64 64 } 65 65 66 .calendar thead .weekend { /* How a weekend day name shows in header */66 div.calendar thead .weekend { /* How a weekend day name shows in header */ 67 67 color: #f00; 68 68 } 69 69 70 .calendar thead .hilite { /* How do the buttons in header appear when hover */70 div.calendar thead .hilite { /* How do the buttons in header appear when hover */ 71 71 border-top: 2px solid #fff; 72 72 &
