Skip to content

Commit

Permalink
fix: actions.css button style
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Yu committed Nov 6, 2024
1 parent f854b23 commit 5d46b11
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions djangocms_pageadmin/static/djangocms_pageadmin/css/actions.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/*-------------------------------------
All action buttons
---------------------------------------*/
.btn.cms-page-admin-action-btn {
.btn.cms-action-btn {
position: relative;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
Expand All @@ -47,17 +47,17 @@
}

/* disable clicking for inactive buttons */
.btn.cms-page-admin-action-btn.inactive {
.btn.cms-action-btn.inactive {
pointer-events: none;
background-color: #e1e1e1 !important;
}

.btn.cms-page-admin-action-btn.inactive img {
.btn.cms-action-btn.inactive img {
opacity: 0.5;
}

/* set size and spacing between for the action icons */
a.btn.cms-page-admin-action-btn img {
a.btn.cms-action-btn img {
width: 20px;
height: 20px;
margin-right: 4px;
Expand All @@ -69,7 +69,7 @@ extending the pagetree classes provided by CMS
---------------------------------------*/

/* add shadow on burger menu trigger */
a.btn.cms-page-admin-action-btn:hover, a.btn.cms-page-admin-action-btn.open {
a.btn.cms-action-btn:hover, a.btn.cms-action-btn.open {
box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

Expand Down

0 comments on commit 5d46b11

Please sign in to comment.