Skip to content

Commit f5c81e1

Browse files
committed
fix: adjust button styling
1 parent b1bfc1a commit f5c81e1

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

branching_xblock/static/css/studio_editor.css

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -610,14 +610,26 @@
610610

611611
.xblock-actions .action-primary {
612612
min-height: 36px;
613-
border: 1px solid #006fb9;
613+
border: none;
614614
border-radius: 6px;
615-
background: #006fb9;
615+
background: #0f62a1;
616616
color: #fff;
617-
padding: 6px 12px;
618-
font-size: 14px;
619-
font-weight: 500;
617+
padding: 11px 24px;
618+
font-size: 16px;
619+
font-weight: 600;
620620
line-height: 1.2;
621+
cursor: pointer;
622+
transition: background-color 0.2s ease;
623+
}
624+
625+
.xblock-actions .action-primary:disabled {
626+
opacity: 0.5;
627+
cursor: not-allowed;
628+
}
629+
630+
.xblock-actions .action-primary:not(:disabled):hover,
631+
.xblock-actions .action-primary:not(:disabled):focus {
632+
background-color: #0c4f83;
621633
}
622634

623635
.xblock-actions .action-secondary {

0 commit comments

Comments
 (0)