Skip to content

Commit

Permalink
Further Simplify the filter system
Browse files Browse the repository at this point in the history
  • Loading branch information
F12-Syntex committed Jul 24, 2024
1 parent 3ee8880 commit 6719f6e
Showing 1 changed file with 15 additions and 38 deletions.
53 changes: 15 additions & 38 deletions resources/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,21 @@ body.compare, body.timeline {

.project_container {
display: grid;
grid-template-columns: 25% 50% 50%;
grid-template-columns: 20% 50% 50%;
}


#branchSearch{
width: 100%;
max-width: 100%;
}

.filter-header{
width: 150px;
max-width: 150px;
display: flex;
overflow-x: hidden;
}

.links_card {
border: 1px solid #ddd;
Expand All @@ -40,18 +52,8 @@ body.compare, body.timeline {

margin-top: 1em;

width: 200px;
}

.links_card .filter-options {
display: flex;
justify-content: space-between;
}

.links_card .filter-option {
cursor: pointer;
border-radius: 4px;
border: 1px solid transparent;
width: 150px;
max-width: 150px;
}

.links_card .filter-option.selected-text {
Expand All @@ -78,31 +80,6 @@ body.compare, body.timeline {
color: white;
}

.filter-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1px;
background-color: #fff;
border-radius: 5px 5px 0 0;

width: 100%;
}

.filter-header input {
flex-grow: 1;
margin-right: 10px;
padding: 5px;
border: 1px solid #ccc;
border-radius: 3px;
}

.filter-header .settings-icon {
cursor: pointer;
font-size: 1.5em;
color: #888;
}

.filter-options {
background-color: #fff;
border-top: none;
Expand Down

0 comments on commit 6719f6e

Please sign in to comment.