Skip to content

Commit

Permalink
Adaptive contants collapsible titles, use more neutral colors
Browse files Browse the repository at this point in the history
  • Loading branch information
torinfo committed Aug 21, 2023
1 parent f2d5848 commit d0fcd07
Showing 1 changed file with 2 additions and 18 deletions.
Expand Up @@ -175,12 +175,8 @@ li.select-interaction.selected {

/* Style the button that is used to open and close the collapsible content */
.collapsible {
background-color: #1491BB;
color: #ffffff;
/*
background-color: #e3dbdb;
background-color: #f8f8f8;
color: #444;
*/
cursor: pointer;
padding: 18px;
width: 100%;
Expand All @@ -194,12 +190,8 @@ li.select-interaction.selected {
}

.feedback {
background-color: #1491BB;
color: #ffffff;
/*
background-color: #e3dbdb;
background-color: #cccccc;
color: #444;
*/
padding: 18px;
width: 100%;
border: none;
Expand All @@ -210,10 +202,7 @@ li.select-interaction.selected {

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
/*
background-color: #ccc;
*/
background-color: #0c6985;
}

/* Style the collapsible content. Note: hidden by default */
Expand All @@ -226,18 +215,13 @@ li.select-interaction.selected {
}

.collapsible:after {
/*
content: '\02795';
*/
content: "\02B";
font-size: 22px;
color: white;
float: right;
margin-left: 5px;
}

.active:after {
/* content: "\2796"; /* Unicode character for "minus" sign (-) */
content: "\02212";
font-size: 22px;
}
Expand Down

0 comments on commit d0fcd07

Please sign in to comment.