Skip to content

Commit 1e707cf

Browse files
authored
Merge pull request #46 from couchbase/ui-bug-fixes
Ui bug fixes for docs-Sandbox-Site-Validation
2 parents 58e062e + 97dac35 commit 1e707cf

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

src/css/base.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ body {
1616

1717
body {
1818
color: var(--color-text);
19-
font-family: "Source Sans Pro", sans-serif;
19+
font-family: "Open Sans", sans-serif;
2020
line-height: var(--line-height-body);
2121
margin: 0;
2222
}

src/css/clipboard.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ a.copy-code-button:hover {
121121
}
122122

123123
.doc .listingblock pre .fade-shadow {
124-
display: inline-block;
124+
display: none;
125125
background:
126126
transparent
127127
linear-gradient(

src/css/common.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
.btn-primary {
1616
padding: 5px 15px;
17-
border: 1px solid var(--color-brand-blue);
18-
background: var(--color-brand-blue);
17+
border: 1px solid var(--color-brand-blue-secondary);
18+
background: var(--color-brand-blue-secondary);
1919
color: var(--color-brand-white);
2020
}
2121

src/css/doc.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@
147147
margin-left: -10px;
148148
}
149149

150-
.ulist {
150+
.ulist,
151+
.olist {
151152
padding-left: var(--base-space);
152153
}
153154

src/css/header.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@
139139
padding: 0;
140140
width: 16px;
141141
height: 16px;
142+
color: #999;
142143
}
143144

144145
.navbar-burger {

src/css/vars.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
--hljs-string: #295d1e;
6565
--hljs-number: #0711ba;
6666
/* --height-navbar: 4rem; */
67-
--height-spacer: 1.2rem;
67+
--height-spacer: 1.1rem;
6868
--height-navbar: 6rem;
6969
--height-version-control: 4.5rem;
7070
--height-to-body: calc(var(--height-navbar) + var(--height-spacer));

src/partials/main.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
{{#with (latest-page-url)}}
44
<div class="article-banner">
55
{{#if (and @root.page.componentVersion.prerelease (not @root.page.latest.prerelease))}}
6-
<p>You are viewing the documentation for a prerelease version.</p>
6+
<p> <i class="fas fa-file-alt"></i> You are viewing the documentation for a prerelease version.</p>
77
{{else}}
8-
<p><i class="fab fa-asymmetrik"></i> A newer version of this documentation is available.</p>
8+
<p><i class="fas fa-file-alt"></i> A newer version of this documentation is available.</p>
99
{{/if}}
1010
<a class="btn" href="{{relativize this}}">View Latest</a>
1111
</div>

0 commit comments

Comments
 (0)