Skip to content

Commit 0bcf212

Browse files
committed
Merge branch 'development' into feature/resize-panel
2 parents ab3d557 + 9b9115c commit 0bcf212

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

ui/arduino/main.css

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -590,3 +590,56 @@ button.small .icon {
590590
font-size: inherit;
591591
outline-color: #F4BA00;
592592
}
593+
594+
#code-editor .cm-panels {
595+
border-color: #DAE3E3;
596+
padding: 0 10px;
597+
margin: 0;
598+
}
599+
#code-editor .cm-panels .cm-search {
600+
display: flex;
601+
align-items: center;
602+
height: 45px;
603+
padding: 0;
604+
background: #ECF1F1;
605+
gap: 10px;
606+
}
607+
#code-editor .cm-panels label {
608+
display: none;
609+
}
610+
#code-editor .cm-panels input,
611+
#code-editor .cm-panels button {
612+
height: 28px;
613+
margin: 0;
614+
padding: 0;
615+
width: auto;
616+
}
617+
#code-editor .cm-panels button {
618+
border: none;
619+
border-radius: none;
620+
font-family: inherit;
621+
background: none;
622+
}
623+
#code-editor .cm-panels input {
624+
box-sizing: border-box;
625+
padding: 0 10px;
626+
border: none;
627+
width: 100%;
628+
background: rgba(255, 255, 255, 1.0);
629+
font-family: inherit;
630+
font-size: 14px;
631+
outline-style: none;
632+
}
633+
#code-editor .cm-panels input:focus {
634+
outline-style: solid;
635+
outline-color: #F4BA00;
636+
637+
}
638+
#code-editor .cm-panels [name="replace"],
639+
#code-editor .cm-panels [name="replace"],
640+
#code-editor .cm-panels [name="replaceAll"] {
641+
display: none;
642+
}
643+
#code-editor .cm-panel.cm-search [name="close"] {
644+
position: relative;
645+
}

0 commit comments

Comments
 (0)