Skip to content

Commit

Permalink
Update scss
Browse files Browse the repository at this point in the history
  • Loading branch information
tino097 committed Nov 21, 2022
1 parent a3520ca commit 740650f
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 11 deletions.
22 changes: 16 additions & 6 deletions ckanext/montreal_theme/assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -13110,7 +13110,9 @@ div.card-body:hover{
.pagination li>a{
color:#637381;
font-size:1rem !important;
border:0 solid #dee2e6
border:0 solid #dee2e6;
background-color:transparent;
background-color:initial
}

.pagination li:hover>a{
Expand Down Expand Up @@ -13497,6 +13499,10 @@ body{
color:#097d6c
}

.b_package_read:hover>a{
color:#097d6c
}

.breadcrumb_item{
display: inline-block
}
Expand All @@ -13511,6 +13517,11 @@ body{
color: rgba(99, 115, 129, var(--text-opacity))
}

.breadcrumb-read{
font-size:1.125rem;
font-weight:700
}

.filter-button{
display: flex;
padding-left: 1rem;
Expand Down Expand Up @@ -14116,7 +14127,6 @@ body{
cursor:pointer;
padding:18px;
width:100%;
border:none;
text-align:left;
outline:none;
font-size:15px;
Expand All @@ -14126,21 +14136,21 @@ body{

.custom_accordion:hover::after{
content:"";
background-image:url(/static/img/icon-plus-circle-full.svg);
background-image:url(/img/icon-plus-circle-full.svg);
width:24px;
height:24px
}

.custom_active:hover::after{
content:"";
background-image:url(/static/img/icon-minus-circle-full.svg);
background-image:url(/img/icon-minus-circle-full.svg);
width:24px;
height:24px
}

.custom_accordion:after{
content:"";
background-image:url(/static/img/icon-plus-circle.svg);
background-image:url(/img/icon-plus-circle.svg);
color:#097d6c;
font-weight:bold;
float:right;
Expand All @@ -14151,7 +14161,7 @@ body{

.custom_active:after{
content:"";
background-image:url(/static/img/icon-minus-circle.svg);
background-image:url(/img/icon-minus-circle.svg);
width:24px;
height:24px
}
Expand Down
9 changes: 4 additions & 5 deletions ckanext/montreal_theme/assets/scss/components/_accordion.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
Expand All @@ -13,21 +12,21 @@

.custom_accordion:hover::after{
content: '';
background-image: url(/static/img/icon-plus-circle-full.svg);
background-image: url(/img/icon-plus-circle-full.svg);
width: 24px;
height: 24px;
}

.custom_active:hover::after{
content: '';
background-image: url(/static/img/icon-minus-circle-full.svg);
background-image: url(/img/icon-minus-circle-full.svg);
width: 24px;
height: 24px;
}

.custom_accordion:after {
content: '';
background-image: url(/static/img/icon-plus-circle.svg);
background-image: url(/img/icon-plus-circle.svg);
color: #097d6c;
font-weight: bold;
float: right;
Expand All @@ -38,7 +37,7 @@

.custom_active:after {
content: '';
background-image: url(/static/img/icon-minus-circle.svg);
background-image: url(/img/icon-minus-circle.svg);
width: 24px;
height: 24px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
color: #097d6c;
}

.b_package_read:hover > a {
color: #097d6c;
}

.breadcrumb_item {
@apply inline-block;

Expand All @@ -21,3 +25,8 @@
.breadcrumb_link {
@apply text-gray-ink;
}

.breadcrumb-read {
font-size: 1.125rem;
font-weight: 700;
}
1 change: 1 addition & 0 deletions ckanext/montreal_theme/assets/scss/components/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,7 @@ div.card-body:hover {
color: #637381;
font-size: 1rem !important;
border: 0 solid #dee2e6;
background-color: initial;
}

.pagination li:hover > a {
Expand Down

0 comments on commit 740650f

Please sign in to comment.