diff --git a/web/react/components/sidebar.jsx b/web/react/components/sidebar.jsx
index 8393440cb0..a1b93188ae 100644
--- a/web/react/components/sidebar.jsx
+++ b/web/react/components/sidebar.jsx
@@ -378,6 +378,13 @@ export default class Sidebar extends React.Component {
);
}
+ var icon = null;
+ if (channel.type === 'O') {
+ icon =
;
+ } else if (channel.type === 'P') {
+ icon =
;
+ }
+
// set up click handler to switch channels (or create a new channel for non-existant ones)
var handleClick = null;
var href = '#';
@@ -461,6 +468,7 @@ export default class Sidebar extends React.Component {
href={href}
onClick={handleClick}
>
+ {icon}
{status}
{channel.display_name}
{badge}
diff --git a/web/react/components/user_settings/custom_theme_chooser.jsx b/web/react/components/user_settings/custom_theme_chooser.jsx
index 55242ca7fb..b7d90922a2 100644
--- a/web/react/components/user_settings/custom_theme_chooser.jsx
+++ b/web/react/components/user_settings/custom_theme_chooser.jsx
@@ -92,7 +92,7 @@ export default class CustomThemeChooser extends React.Component {
>
);
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index fb8b892529..a98d22eaf0 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -544,7 +544,7 @@ export function applyTheme(theme) {
changeCss('@media(max-width: 768px){.settings-modal .settings-table .nav>li>a', 'color:' + theme.sidebarText, 1);
changeCss('.sidebar--left .nav-pills__container li>h4, .sidebar--left .add-channel-btn', 'color:' + changeOpacity(theme.sidebarText, 0.6), 1);
changeCss('.sidebar--left .add-channel-btn:hover, .sidebar--left .add-channel-btn:focus', 'color:' + theme.sidebarText, 1);
- changeCss('.sidebar--left .status path', 'fill:' + changeOpacity(theme.sidebarText, 0.5), 1);
+ changeCss('.sidebar--left .status path', 'fill:' + theme.sidebarText, 1);
changeCss('@media(max-width: 768px){.settings-modal .settings-table .nav>li>a', 'border-color:' + changeOpacity(theme.sidebarText, 0.2), 2);
}
diff --git a/web/sass-files/sass/partials/_search.scss b/web/sass-files/sass/partials/_search.scss
index eceeb9a8c4..0d9d7b50d6 100644
--- a/web/sass-files/sass/partials/_search.scss
+++ b/web/sass-files/sass/partials/_search.scss
@@ -33,6 +33,11 @@
line-height: 40px;
display: none;
}
+.search-item-snippet {
+ ul, ol {
+ padding-left: 20px;
+ }
+}
.sidebar__search-icon {
position: absolute;
top: 15px;
diff --git a/web/sass-files/sass/partials/_sidebar--left.scss b/web/sass-files/sass/partials/_sidebar--left.scss
index d5bf0e5031..b16ac31f77 100644
--- a/web/sass-files/sass/partials/_sidebar--left.scss
+++ b/web/sass-files/sass/partials/_sidebar--left.scss
@@ -42,6 +42,16 @@
margin-right: 6px;
width: 12px;
display: inline-block;
+ i, path {
+ @include opacity(0.5);
+ }
+ .fa-lock {
+ margin-left: 1px;
+ }
+ .fa-globe {
+ top: -1px;
+ position: relative;
+ }
.online--icon {
fill: #7DBE00;
}
diff --git a/web/static/css/google-fonts.css b/web/static/css/google-fonts.css
index a9ed54d3ea..fbbc717da7 100644
--- a/web/static/css/google-fonts.css
+++ b/web/static/css/google-fonts.css
@@ -143,6 +143,19 @@
url('/static/fonts/Lato-regular.svg#Lato') format('svg');
}
+/* Lato Italic */
+@font-face {
+ font-family: 'Lato';
+ font-weight: 400;
+ font-style: italic;
+ src: url('/static/fonts/lato-italic-webfont.eot');
+ src: url('/static/fonts/lato-italic-webfont.eot?#iefix') format('embedded-opentype'),
+ url('/static/fonts/lato-italic-webfont.woff2') format('woff2'),
+ url('/static/fonts/lato-italic-webfont.woff') format('woff'),
+ url('/static/fonts/lato-italic-webfont.ttf') format('truetype'),
+ url('/static/fonts/lato-italic-webfont.svg#latoitalic') format('svg');
+}
+
/* Lato Bold */
@font-face {
font-family: 'Lato';
diff --git a/web/static/fonts/lato-italic-webfont.eot b/web/static/fonts/lato-italic-webfont.eot
new file mode 100755
index 0000000000..09a973da48
Binary files /dev/null and b/web/static/fonts/lato-italic-webfont.eot differ
diff --git a/web/static/fonts/lato-italic-webfont.svg b/web/static/fonts/lato-italic-webfont.svg
new file mode 100755
index 0000000000..1da5d36069
--- /dev/null
+++ b/web/static/fonts/lato-italic-webfont.svg
@@ -0,0 +1,4072 @@
+
+
+
\ No newline at end of file
diff --git a/web/static/fonts/lato-italic-webfont.ttf b/web/static/fonts/lato-italic-webfont.ttf
new file mode 100755
index 0000000000..97dde9575c
Binary files /dev/null and b/web/static/fonts/lato-italic-webfont.ttf differ
diff --git a/web/static/fonts/lato-italic-webfont.woff b/web/static/fonts/lato-italic-webfont.woff
new file mode 100755
index 0000000000..f7fed0e868
Binary files /dev/null and b/web/static/fonts/lato-italic-webfont.woff differ
diff --git a/web/static/fonts/lato-italic-webfont.woff2 b/web/static/fonts/lato-italic-webfont.woff2
new file mode 100755
index 0000000000..10f062a550
Binary files /dev/null and b/web/static/fonts/lato-italic-webfont.woff2 differ
diff --git a/web/static/images/themes/code_themes/github.png b/web/static/images/themes/code_themes/github.png
index a49b877b18..cffc6e0121 100644
Binary files a/web/static/images/themes/code_themes/github.png and b/web/static/images/themes/code_themes/github.png differ
diff --git a/web/static/images/themes/code_themes/githubLarge.png b/web/static/images/themes/code_themes/githubLarge.png
deleted file mode 100644
index cffc6e0121..0000000000
Binary files a/web/static/images/themes/code_themes/githubLarge.png and /dev/null differ
diff --git a/web/static/images/themes/code_themes/monokai.png b/web/static/images/themes/code_themes/monokai.png
index a71225b689..7224950af9 100644
Binary files a/web/static/images/themes/code_themes/monokai.png and b/web/static/images/themes/code_themes/monokai.png differ
diff --git a/web/static/images/themes/code_themes/monokaiLarge.png b/web/static/images/themes/code_themes/monokaiLarge.png
deleted file mode 100644
index 7224950af9..0000000000
Binary files a/web/static/images/themes/code_themes/monokaiLarge.png and /dev/null differ
diff --git a/web/static/images/themes/code_themes/solarized_dark.png b/web/static/images/themes/code_themes/solarized_dark.png
index 07774ff20d..582df48f9d 100644
Binary files a/web/static/images/themes/code_themes/solarized_dark.png and b/web/static/images/themes/code_themes/solarized_dark.png differ
diff --git a/web/static/images/themes/code_themes/solarized_darkLarge.png b/web/static/images/themes/code_themes/solarized_darkLarge.png
deleted file mode 100644
index 582df48f9d..0000000000
Binary files a/web/static/images/themes/code_themes/solarized_darkLarge.png and /dev/null differ
diff --git a/web/static/images/themes/code_themes/solarized_light.png b/web/static/images/themes/code_themes/solarized_light.png
index fc71dbb87a..d2c2702fb3 100644
Binary files a/web/static/images/themes/code_themes/solarized_light.png and b/web/static/images/themes/code_themes/solarized_light.png differ
diff --git a/web/static/images/themes/code_themes/solarized_lightLarge.png b/web/static/images/themes/code_themes/solarized_lightLarge.png
deleted file mode 100644
index d2c2702fb3..0000000000
Binary files a/web/static/images/themes/code_themes/solarized_lightLarge.png and /dev/null differ