Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | /*** |
| 2 | Fullcalendar |
||
| 3 | ***/ |
||
| 4 | |||
| 5 | /* External events */ |
||
| 6 | |||
| 7 | .external-event { |
||
| 8 | display: inline-block ; |
||
| 9 | cursor:move; |
||
| 10 | margin-bottom: 5px ; |
||
| 11 | margin-left: 5px ; |
||
| 12 | } |
||
| 13 | |||
| 14 | .fc-scroller { |
||
| 15 | overflow-y: auto; |
||
| 16 | overflow-x: hidden; |
||
| 17 | } |
||
| 18 | |||
| 19 | .fc-month-view .fc-scroller { |
||
| 20 | height: auto !important; |
||
| 21 | } |
||
| 22 | |||
| 23 | .portlet { |
||
| 24 | |||
| 25 | .event-form-title { |
||
| 26 | font-size: 14px; |
||
| 27 | margin-top: 4px; |
||
| 28 | font-weight: 400; |
||
| 29 | margin-bottom: 10px; |
||
| 30 | } |
||
| 31 | |||
| 32 | &.calendar { |
||
| 33 | .fc-button { |
||
| 34 | -webkit-box-shadow: none ; |
||
| 35 | -moz-box-shadow: none ; |
||
| 36 | box-shadow: none ; |
||
| 37 | text-shadow: none; |
||
| 38 | border: 0 ; |
||
| 39 | height: 35px; |
||
| 40 | padding: 6px 8px 7px 8px ; |
||
| 41 | margin-left:2px; |
||
| 42 | border-top-style: none; |
||
| 43 | border-bottom-style: none; |
||
| 44 | border-right-style: solid; |
||
| 45 | border-left-style: solid; |
||
| 46 | border-color: #ddd; |
||
| 47 | background: transparent; |
||
| 48 | color: #fff; |
||
| 49 | top: -45px; |
||
| 50 | outline: none !important; |
||
| 51 | |||
| 52 | @include border-radius($general-border-radius $general-border-radius 0 0); |
||
| 53 | } |
||
| 54 | |||
| 55 | .fc-toolbar { |
||
| 56 | h2 { |
||
| 57 | margin-top: 3px; |
||
| 58 | font-size: 17px; |
||
| 59 | } |
||
| 60 | |||
| 61 | margin-bottom: 0px; |
||
| 62 | } |
||
| 63 | |||
| 64 | .fc-header { |
||
| 65 | margin-bottom:-21px; |
||
| 66 | } |
||
| 67 | |||
| 68 | .fc-button-prev { |
||
| 69 | padding-right: 10px; |
||
| 70 | padding-left: 8px; |
||
| 71 | } |
||
| 72 | |||
| 73 | .fc-button-next { |
||
| 74 | padding-right: 8px; |
||
| 75 | padding-left: 10px; |
||
| 76 | } |
||
| 77 | |||
| 78 | .fc-button { |
||
| 79 | &.fc-state-active, |
||
| 80 | &.fc-state-hover { |
||
| 81 | color: #666; |
||
| 82 | background-color: #fff; |
||
| 83 | } |
||
| 84 | |||
| 85 | &.fc-state-disabled { |
||
| 86 | color: #ddd; |
||
| 87 | } |
||
| 88 | |||
| 89 | .fc-icon-left-single-arrow { |
||
| 90 | font-family: FontAwesome; |
||
| 91 | font-size: 16px; |
||
| 92 | |||
| 93 | &:after { |
||
| 94 | content: ""; |
||
| 95 | } |
||
| 96 | &:before { |
||
| 97 | content: "\f104"; |
||
| 98 | } |
||
| 99 | } |
||
| 100 | |||
| 101 | .fc-icon-right-single-arrow { |
||
| 102 | font-family: FontAwesome; |
||
| 103 | font-size: 16px; |
||
| 104 | |||
| 105 | &:after { |
||
| 106 | content: ""; |
||
| 107 | } |
||
| 108 | &:before { |
||
| 109 | content: "\f105"; |
||
| 110 | } |
||
| 111 | } |
||
| 112 | } |
||
| 113 | |||
| 114 | .fc-text-arrow { |
||
| 115 | font-size: 22px; |
||
| 116 | font-family: "Courier New", Courier, monospace; |
||
| 117 | vertical-align: baseline; |
||
| 118 | } |
||
| 119 | |||
| 120 | .fc-event { |
||
| 121 | border: 0px; |
||
| 122 | background-color: #69a4e0; |
||
| 123 | color: #fff; |
||
| 124 | |||
| 125 | .fc-content { |
||
| 126 | border: 0px; |
||
| 127 | } |
||
| 128 | |||
| 129 | .fc-time { |
||
| 130 | float: left; |
||
| 131 | text-align: left; |
||
| 132 | color: #fff; |
||
| 133 | font-size: 13px; |
||
| 134 | font-weight: 300; |
||
| 135 | } |
||
| 136 | |||
| 137 | .fc-title { |
||
| 138 | text-align: left; |
||
| 139 | float: left; |
||
| 140 | color: #fff; |
||
| 141 | font-size: 13px; |
||
| 142 | font-weight: 300; |
||
| 143 | } |
||
| 144 | } |
||
| 145 | |||
| 146 | .fc-header-title h2 { |
||
| 147 | font-size: 14px ; |
||
| 148 | line-height: 20px; |
||
| 149 | font-weight: 400; |
||
| 150 | color: #111; |
||
| 151 | } |
||
| 152 | |||
| 153 | .fc-widget-header { |
||
| 154 | background-image: none ; |
||
| 155 | filter:none; |
||
| 156 | background-color: #eee ; |
||
| 157 | text-transform: uppercase; |
||
| 158 | font-weight: 300; |
||
| 159 | } |
||
| 160 | |||
| 161 | &.light { |
||
| 162 | .fc-button { |
||
| 163 | top: -60px; |
||
| 164 | color: #666; |
||
| 165 | text-transform: uppercase; |
||
| 166 | font-size: 12px; |
||
| 167 | padding-bottom: 35px; |
||
| 168 | |||
| 169 | .fc-text-arrow { |
||
| 170 | margin-top: -6px; |
||
| 171 | display: inline-block; |
||
| 172 | } |
||
| 173 | |||
| 174 | &.fc-state-active, |
||
| 175 | &.fc-state-hover { |
||
| 176 | color: #333; |
||
| 177 | border-bottom: 2px solid $brand-success; |
||
| 178 | } |
||
| 179 | |||
| 180 | &.fc-state-disabled { |
||
| 181 | color: #aaa; |
||
| 182 | } |
||
| 183 | } |
||
| 184 | } |
||
| 185 | |||
| 186 | .mobile { |
||
| 187 | |||
| 188 | .fc-button { |
||
| 189 | padding: 0px 6px 20px 6px ; |
||
| 190 | margin-left:2px ; |
||
| 191 | border: 0; |
||
| 192 | background-color: #ddd ; |
||
| 193 | background-image: none; |
||
| 194 | -webkit-box-shadow: none ; |
||
| 195 | -moz-box-shadow: none ; |
||
| 196 | box-shadow: none ; |
||
| 197 | -webkit-border-radius: 0 ; |
||
| 198 | -moz-border-radius: 0 ; |
||
| 199 | border-radius: 0 ; |
||
| 200 | color: #000; |
||
| 201 | text-shadow: none ; |
||
| 202 | text-align: center; |
||
| 203 | |||
| 204 | &.fc-state-hover, |
||
| 205 | &.fc-state-active { |
||
| 206 | background-color: #eee ; |
||
| 207 | } |
||
| 208 | &.fc-state-disabled { |
||
| 209 | color: #bbb ; |
||
| 210 | } |
||
| 211 | } |
||
| 212 | |||
| 213 | .fc-button-prev { |
||
| 214 | margin-right: 5px; |
||
| 215 | margin-top: -2px; |
||
| 216 | } |
||
| 217 | |||
| 218 | .fc-button-next { |
||
| 219 | margin-right: -0px; |
||
| 220 | margin-top: -2px; |
||
| 221 | } |
||
| 222 | |||
| 223 | .fc-header-space { |
||
| 224 | margin: 0px ; |
||
| 225 | padding: 0px ; |
||
| 226 | width: 0px ; |
||
| 227 | } |
||
| 228 | |||
| 229 | .fc-header-left { |
||
| 230 | position: absolute; |
||
| 231 | z-index: 10; |
||
| 232 | |||
| 233 | .fc-button { |
||
| 234 | top: -2px ; |
||
| 235 | } |
||
| 236 | } |
||
| 237 | |||
| 238 | .fc-header-right { |
||
| 239 | position: relative; |
||
| 240 | right:0; |
||
| 241 | |||
| 242 | .fc-button { |
||
| 243 | top: 35px ; |
||
| 244 | } |
||
| 245 | } |
||
| 246 | |||
| 247 | .fc-content { |
||
| 248 | margin-top: 53px; |
||
| 249 | } |
||
| 250 | } |
||
| 251 | } |
||
| 252 | } |