fork init

This commit is contained in:
Ben Harris 2019-01-15 11:51:18 -05:00
parent ef9c2e2cc0
commit b0c55e3c8e
4 changed files with 93 additions and 38 deletions

View File

@ -6,6 +6,15 @@
An opinionated simple theme with Solarized colours
</h3>
benharri's fork with some small tweaks that i've collected
some of the tweaks include:
* compact chanlist
* compact userlist (hides roles/modes)
* [ibm plex mono](https://github.com/ibm/plex)
<p align="center">
<a href="https://yarn.pm/thelounge-theme-solarized"><img
alt="npm version"
@ -25,5 +34,5 @@
Install this theme with:
```sh
thelounge install thelounge-theme-solarized
thelounge install thelounge-theme-solarized-fork-monospace
```

View File

@ -1,32 +1,32 @@
{
"name": "thelounge-theme-solarized",
"version": "1.1.2",
"description": "A simple theme with Solarized colours",
"main": "package.json",
"thelounge": {
"name": "Solarized",
"type": "theme",
"css": "theme.css",
"themeColor": "#002b36"
},
"license": "MIT",
"homepage": "https://github.com/thelounge/thelounge-theme-solarized",
"repository": {
"type": "git",
"url": "git+https://github.com/thelounge/thelounge-theme-solarized.git"
},
"keywords": [
"thelounge",
"thelounge-theme"
],
"bugs": {
"url": "https://github.com/thelounge/thelounge-theme-solarized/issues"
},
"devDependencies": {
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0"
},
"scripts": {
"test": "stylelint theme.css"
}
}
{
"name": "thelounge-theme-solarized-fork-monospace",
"version": "1.1.2",
"description": "A simple theme with Solarized colors",
"main": "package.json",
"thelounge": {
"name": "Solarized-monospace",
"type": "theme",
"css": "theme.css"
},
"license": "MIT",
"homepage": "https://github.com/benharri-forks/thelounge-theme-solarized",
"repository": {
"type": "git",
"url": "git+https://github.com/benharri-forks/thelounge-theme-solarized.git"
},
"keywords": [
"thelounge",
"thelounge-theme"
],
"bugs": {
"url": "https://github.com/benharri-forks/thelounge-theme-solarized/issues"
},
"devDependencies": {
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0"
},
"scripts": {
"test": "stylelint theme.css"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 58 KiB

View File

@ -1,10 +1,38 @@
/*!
* Solarized
*
* URL: https://github.com/thelounge/lounge-theme-solarized
* URL: https://github.com/benharri/lounge-theme-solarized
* License: MIT
* forked by benharri
*/
/* my custom stuff */
@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono:400,400i');
* {
font-family: 'IBM Plex Mono', monospace;
}
#user-specified-css-input {
height: 500px;
}
#sidebar .networks {
padding: 5px 0;
}
#sidebar .network {
margin-bottom: 10px;
}
#sidebar .chan {
padding: 3px 10px;
}
::-webkit-scrollbar {
display: none;
}
/* Samsung Internet and Microsoft Edge (yes, both of them use -webkit- prefix) */
::-webkit-input-placeholder {
color: rgba(131, 148, 150, 0.9);
@ -56,10 +84,6 @@ html {
display: inline-block;
}
#sidebar .logo-container {
padding-top: 5px;
}
#sidebar .logo-inverted {
height: 35px;
}
@ -154,6 +178,16 @@ body {
color: #93c7eb;
}
#sidebar .chan.query::before,
#sidebar .chan.channel::before {
content: "";
}
#sidebar .network,
#sidebar .network-placeholder {
margin-bottom: 1em;
}
/* Hide close button on channels, it is not used that frequently */
.channel-list-item[data-type="channel"] .close-tooltip {
display: none;
@ -191,6 +225,18 @@ body {
border-color: var(--background-light-color);
}
#chat .user-mode::before {
content: "" !important;
border: none;
line-height: inherit;
padding: 0;
margin-bottom: 0;
}
#form {
border: 1px solid var(--background-light-color);
}
#chat .userlist .search,
#form .input {
border: 0;