Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maintenance: Apply consistent border-radius values to .btn + .card classes #1470

Merged
merged 2 commits into from Dec 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
25 changes: 13 additions & 12 deletions app/css/lightsout.php
Expand Up @@ -30,14 +30,6 @@
font-size: 2rem !important;
}

h4 {
font-size: 1.3rem;
}

h5.card-title {
font-size: 1.2rem;
}

.page-header {
border-left: .01rem solid #d2d2d2;
border-bottom: .01rem solid #d2d2d2;
Expand Down Expand Up @@ -71,6 +63,10 @@
font-size: 1.0rem;
}

.nav-link.active {
font-weight: bolder;
}

.nav-tabs .nav-link:hover {
border-color: transparent;
}
Expand Down Expand Up @@ -123,8 +119,8 @@
border-color: #404040;
background-color: #202020;
color: #afafaf;
border-top-right-radius: 3px;
border-top-left-radius: 3px;
border-top-right-radius: 0.35rem;
border-top-left-radius: 0.35rem;
font-size: 1.0rem;
font-weight: 400;
}
Expand All @@ -148,7 +144,7 @@

.card, .card-body {
border-color: #343434;
border-radius: 3px;
border-radius: 0.35rem;
background-color: #141414;
}

Expand Down Expand Up @@ -261,7 +257,7 @@
[class*="btn"], [class*="btn"]:focus, [class*="btn"]:disabled {
background-color: #202020;
border-color: #404040;
border-radius: 3px;
border-radius: 0.35rem;
color: #d2d2d2;
}

Expand Down Expand Up @@ -366,6 +362,11 @@
border: 1px solid #343434;
}

.btn-light {
border-color: #343434;
border-radius: 0.35rem;
background-color: #141414;
}

.signal-icon .signal-bar {
background: #2b8080;
Expand Down