Overview
Comment: | Fixed hover of inactive buttons. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | view |
Files: | files | file ages | folders |
SHA3-256: |
6873bd16d3e09d561a39c82458c3f0a7 |
User & Date: | florian 2024-04-16 18:37:21 |
Context
2024-04-17
| ||
10:11 | Fixing tooltip pointer for high resulusion displays. check-in: 74973ea407 user: florian tags: view | |
2024-04-16
| ||
18:37 | Merged changes from view. check-in: 3bde718442 user: florian tags: beta | |
18:37 | Fixed hover of inactive buttons. check-in: 6873bd16d3 user: florian tags: view | |
18:27 | Set link emphasis color in dark mode. Changed link emphasis color for current roadmap link. check-in: 1b839db8d4 user: florian tags: view | |
Changes
Changes to luna_lms/webapp.py.
︙ | ︙ | |||
301 302 303 304 305 306 307 | .button img, .button_inactive img { height: 1.75rem ; margin-top: -0.25rem ; } .button:hover, .button_inactive:hover, .button:focus, .button_inactive:focus { color: var(--text-color) ; | | > > > > > > > > > | 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | .button img, .button_inactive img { height: 1.75rem ; margin-top: -0.25rem ; } .button:hover, .button_inactive:hover, .button:focus, .button_inactive:focus { color: var(--text-color) ; border-bottom-color: var(--stroke-color) ; } .button:hover, .button:focus { border-bottom-width: var(--medium-border) ; } .button_inactive:hover, .button_inactive:focus { border-bottom-style: dotted ; border-bottom-width: 2px ; } .browse { display: inline-block ; margin: 3.1rem 1.6rem 1.9rem 0px ; padding: 0.6rem 0.94rem 0.5rem 0.94rem ; border: solid var(--medium-border) var(--stroke-color) ; |
︙ | ︙ |