Overview
Comment: | Fixed highlighting on focus. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | view |
Files: | files | file ages | folders |
SHA3-256: |
5fb9d7df2c38f370a149f44af47fc082 |
User & Date: | florian 2024-02-21 14:05:32 |
Original Comment: | Hervorhebungen bei Fokus repariert. |
Context
2024-02-22
| ||
12:22 | Added icon for editing system. check-in: 51617ccdea user: florian tags: view | |
12:10 | Merged changes from view. check-in: 9abedf3108 user: florian tags: fachgruppe | |
2024-02-21
| ||
14:10 | Merged changes from view. check-in: 29920d64fc user: florian tags: beta | |
14:05 | Fixed highlighting on focus. check-in: 5fb9d7df2c user: florian tags: view | |
2024-02-20
| ||
12:34 | Link-Hervorhebung angepasst. check-in: eb1ed29d15 user: florian tags: view | |
Changes
Changes to luna_lms/webapp.py.
︙ | ︙ | |||
206 207 208 209 210 211 212 | } .button img, .button_inactive img { height: 1.75rem ; margin-top: -0.25rem ; } | | | 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | } .button img, .button_inactive img { height: 1.75rem ; margin-top: -0.25rem ; } .button:hover, .button_inactive:hover, .button:focus, .button_inactive:focus { color: black ; border-bottom: solid 1.5px black ; } .browse { display: inline-block ; margin: 3.1rem 1.6rem 1.9rem 0px ; |
︙ | ︙ | |||
270 271 272 273 274 275 276 | nav.course_navigation a { text-decoration: none ; border-bottom: none ; box-shadow: none ; transition: none ; } | | | 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 | nav.course_navigation a { text-decoration: none ; border-bottom: none ; box-shadow: none ; transition: none ; } nav.course_navigation a:hover, nav.course_navigation a:focus { color: black ; border-bottom: none ; } nav.course_navigation a:hover span, nav.course_navigation a:focus span { box-shadow: none ; border-bottom: solid 1.5px black ; |
︙ | ︙ | |||
549 550 551 552 553 554 555 | .course_hover:hover, .course_hover:focus { border: 0.31rem solid rgba(200, 17, 80, 0.225); border-radius:27px; margin-bottom: 2.2rem ; } | | | 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 | .course_hover:hover, .course_hover:focus { border: 0.31rem solid rgba(200, 17, 80, 0.225); border-radius:27px; margin-bottom: 2.2rem ; } .course_hover a:hover, .course_hover a:focus { color: black ; } .course_listing { border: solid 1px rgb(191,191,191) ; border-radius: 20px ; box-shadow: 4px 4px 4px 0px rgba(204,204,204); |
︙ | ︙ |