migrate
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
name: Build
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build and test
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v1
|
||||
|
||||
- name: Install
|
||||
run: yarn --frozen-lockfile --non-interactive
|
||||
|
||||
- name: Test
|
||||
run: yarn test
|
||||
@@ -1,27 +0,0 @@
|
||||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags: v*
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: Release workflow
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
registry-url: 'https://registry.npmjs.org/'
|
||||
|
||||
- name: Install
|
||||
run: yarn --frozen-lockfile --non-interactive
|
||||
|
||||
- name: Publish
|
||||
run: npm publish
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
|
||||
@@ -1,4 +0,0 @@
|
||||
extends: stylelint-config-standard
|
||||
|
||||
rules:
|
||||
indentation: tab
|
||||
@@ -1,29 +1,7 @@
|
||||
<h1 align="center">
|
||||
Solarized theme for The Lounge
|
||||
</h1>
|
||||
|
||||
<h3 align="center">
|
||||
An opinionated simple theme with Solarized colours
|
||||
</h3>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://yarn.pm/thelounge-theme-solarized"><img
|
||||
alt="npm version"
|
||||
src="https://img.shields.io/npm/v/thelounge-theme-solarized.svg?style=flat-square"></a>
|
||||
<a href="https://npm-stat.com/charts.html?package=thelounge-theme-solarized&from=2016-02-12"><img
|
||||
alt="Total downloads on npm"
|
||||
src="https://img.shields.io/npm/dt/thelounge-theme-solarized.svg?colorB=007dc7&style=flat-square"></a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="screenshot.png" alt="Screenshot of the Solarized theme for The Lounge" width="550">
|
||||
</p>
|
||||
|
||||
|
||||
## Installation
|
||||
# Installation
|
||||
|
||||
Install this theme with:
|
||||
|
||||
```sh
|
||||
thelounge install thelounge-theme-solarized
|
||||
thelounge install thelounge-theme-lrz
|
||||
```
|
||||
|
||||
+5
-8
@@ -1,27 +1,24 @@
|
||||
{
|
||||
"name": "thelounge-theme-solarized",
|
||||
"name": "thelounge-theme-lrz",
|
||||
"version": "1.1.9",
|
||||
"description": "A simple theme with Solarized colours",
|
||||
"description": "Custom personal theme",
|
||||
"main": "package.json",
|
||||
"thelounge": {
|
||||
"name": "Solarized",
|
||||
"name": "LRZ",
|
||||
"type": "theme",
|
||||
"css": "theme.css",
|
||||
"themeColor": "#002b36"
|
||||
},
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/thelounge/thelounge-theme-solarized",
|
||||
"homepage": "https://git.yetaga.in/alazyreader/thelounge-theme-lzr",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/thelounge/thelounge-theme-solarized.git"
|
||||
"url": "git+https://git.yetaga.in/alazyreader/thelounge-theme-lzr.git"
|
||||
},
|
||||
"keywords": [
|
||||
"thelounge",
|
||||
"thelounge-theme"
|
||||
],
|
||||
"bugs": {
|
||||
"url": "https://github.com/thelounge/thelounge-theme-solarized/issues"
|
||||
},
|
||||
"devDependencies": {
|
||||
"stylelint": "^13.1.0",
|
||||
"stylelint-config-standard": "^22.0.0"
|
||||
|
||||
@@ -194,7 +194,11 @@ form.message-search input {
|
||||
|
||||
#chat .self {
|
||||
/* same as background color, but lighter */
|
||||
background: linear-gradient(to right, hsla(194, 61%, 16%, 1) 5px, #07181d 5px);
|
||||
background: linear-gradient(
|
||||
to right,
|
||||
hsla(194, 61%, 16%, 1) 5px,
|
||||
#07181d 5px
|
||||
);
|
||||
}
|
||||
|
||||
#form,
|
||||
@@ -323,10 +327,18 @@ form.message-search input {
|
||||
}
|
||||
|
||||
/* Increase contrast of some IRC colors */
|
||||
.irc-fg2 { color: #007ae6; }
|
||||
.irc-fg5 { color: #e969a7; }
|
||||
.irc-fg6 { color: #d20ff0; }
|
||||
.irc-fg12 { color: #66b2ff; }
|
||||
.irc-fg2 {
|
||||
color: #007ae6;
|
||||
}
|
||||
.irc-fg5 {
|
||||
color: #e969a7;
|
||||
}
|
||||
.irc-fg6 {
|
||||
color: #d20ff0;
|
||||
}
|
||||
.irc-fg12 {
|
||||
color: #66b2ff;
|
||||
}
|
||||
|
||||
@media (max-width: 479px) {
|
||||
#chat .msg[data-type="message"] .from .user::before {
|
||||
|
||||
Reference in New Issue
Block a user