diff --git a/_shared_assets/themes/owncloud/static/style.css b/_shared_assets/themes/owncloud/static/style.css index ce98ec47b..e3d4104ff 100644 --- a/_shared_assets/themes/owncloud/static/style.css +++ b/_shared_assets/themes/owncloud/static/style.css @@ -1153,5 +1153,26 @@ h3 { margin-top: 25px; } -dd{margin-left: 0; padding:5px; background: #f5f5f5; border: 1px solid rgba(0, 0, 0, 0.15);} -dl > dt {background-color: #1D2D44; color: #fefefe; padding: 5px; border-top-left-radius: 3px; border-top-right-radius: 3px;}; + +dl.class > dt, dl.function > dt, dl.method > dt { + background-color: #1D2D44; + color: #fefefe; + padding: 5px; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} + +dd { + padding:5px; +} + +dl.function > dd, dl.method > dd { + margin-left: 0; + background: #f5f5f5; + border: 1px solid rgba(0, 0, 0, 0.15); +} + +dl.class > dd { + border: 1px solid rgba(0, 0, 0, 0.15); + margin-left: 0; +}