Skip to content
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
783c144
Top navigation bar improvements
kimsauce Aug 18, 2024
e73209e
Update docs/contributing/index.md
kimsauce Aug 18, 2024
310787d
Merge branch 'main' into DOCS-394
kimsauce Aug 25, 2024
57bcd54
Merge branch 'DOCS-394' of github.com:SumoLogic/sumologic-documentati…
kimsauce Aug 25, 2024
fdaff2e
Merge branch 'main' into DOCS-394
kimsauce Aug 31, 2024
e574fb3
Replaced "Contact Support" button with support (life ring) icon
kimsauce Sep 1, 2024
9655e34
Merge branch 'main' into DOCS-394
kimsauce Sep 4, 2024
cb06d8e
Merge branch 'main' into DOCS-394
kimsauce Sep 10, 2024
97d6ac6
"Support" button CSS
kimsauce Sep 10, 2024
a644654
docusaurus.config.js fix
kimsauce Sep 10, 2024
884da81
Merge branch 'main' into DOCS-394
kimsauce Sep 17, 2024
e2c008c
dropdown labels
kimsauce Sep 17, 2024
abebc13
Merge branch 'main' into DOCS-394
kimsauce Sep 17, 2024
9f2904b
Merge branch 'main' into DOCS-394
kimsauce Sep 19, 2024
d6e05a2
align Support dropdown with team discussion
kimsauce Sep 19, 2024
f84aeb3
Update docs/contributing/index.md
kimsauce Sep 23, 2024
57bdc7e
Update docs/contributing/index.md
kimsauce Sep 23, 2024
6926b76
Update index.md
kimsauce Sep 23, 2024
4e48aee
Merge branch 'main' into DOCS-394
kimsauce Oct 10, 2024
ae8a2ef
Support dropdown
kimsauce Oct 10, 2024
4348969
light mode border
kimsauce Oct 11, 2024
cc72b23
Merge branch 'main' into DOCS-394
kimsauce Oct 11, 2024
bcc2180
Merge branch 'main' into DOCS-394
kimsauce Oct 11, 2024
cc2773c
Button CSS fixes
kimsauce Oct 12, 2024
fe2a886
Merge branch 'DOCS-394' of github.com:SumoLogic/sumologic-documentati…
kimsauce Oct 12, 2024
0a44a9b
fix
kimsauce Oct 12, 2024
6777a3f
Update src/css/sumo.scss
kimsauce Oct 12, 2024
5a34dbd
alignment fix
kimsauce Oct 12, 2024
86a2060
Merge branch 'DOCS-394' of github.com:SumoLogic/sumologic-documentati…
kimsauce Oct 12, 2024
7297b91
Update src/css/sumo.scss
kimsauce Oct 12, 2024
0cf1626
Merge branch 'main' into DOCS-394
kimsauce Oct 14, 2024
bee3a9e
Merge branch 'main' into DOCS-394
kimsauce Oct 14, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/css/sumo.scss
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,6 @@ html[data-theme='light'] {
@media (prefers-color-scheme: light) {
.support-menu-trigger {
stroke: white;
border-color: black; /* Darker border for light mode */
}
}

Expand Down Expand Up @@ -351,7 +350,7 @@ html[data-theme='light'] {

.header-trial::before {
content: 'Start free trial';
border: 1px solid #0466FF;
border: .5px solid #0466FF;
color: #FFF;
border-radius: 3px;
padding: 5px 15px;
Expand All @@ -370,7 +369,7 @@ html[data-theme='light'] {

[data-theme='dark'] .header-trial::before {
background: transparent;
border: 0px solid #0466FF;
border: .5px solid #0466FF;
color: #FFF;
border-radius: 3px;
padding: 5px 15px;
Expand All @@ -382,6 +381,9 @@ html[data-theme='light'] {
background: linear-gradient(35deg, #0466FF 0%, #0800FF 30%, #000099 100%);
}

[data-theme='light'] .header-trial::before {
border: .5px solid #0466FF;
}
.markdown {
h1 {
font-size: 2rem !important;
Expand Down
Loading