Przeglądaj źródła

Further refine day and week number css selectors

To further pave the way for week number display in the day cell,
existing CSS selectors are made more specific.
Peter Nowee 10 lat temu
rodzic
commit
3cfff603e4
1 zmienionych plików z 4 dodań i 4 usunięć
  1. 4 4
      src/basic/basic.css

+ 4 - 4
src/basic/basic.css

@@ -41,21 +41,21 @@
 	padding-bottom: 2px;
 }
 
-.fc-basic-view .fc-week-number {
+.fc-basic-view td.fc-week-number {
 	text-align: center;
 }
 
-.fc-basic-view .fc-week-number span {
+.fc-basic-view td.fc-week-number span {
 	/* work around the way we do column resizing and ensure a minimum width */
 	display: inline-block;
 	min-width: 1.25em;
 }
 
-.fc-ltr .fc-basic-view .fc-day-number {
+.fc-ltr .fc-basic-view .fc-numbercell span.fc-day-number {
 	float: right;
 }
 
-.fc-rtl .fc-basic-view .fc-day-number {
+.fc-rtl .fc-basic-view .fc-numbercell span.fc-day-number {
 	float: left;
 }