git ssb

0+

alanz / patchwork



forked from Matt McKegg / patchwork

Commit aeb64ef804d9d89d3664419052ca631bf516c9ec

style tweaks

Matt McKegg committed on 10/27/2016, 1:44:07 PM
Parent: 933c5c308e2f9b5a63a0982d7a28e9ced1f3f9e2

Files changed

styles/base.mcsschanged
styles/index.jschanged
styles/main-window.mcsschanged
styles/patchbay-tweaks.cssadded
styles/base.mcssView
@@ -1,6 +1,6 @@
11 html, body {
2- background: #ccc
2+ background: #f5f5f5
33 margin: 0
44 font-family: caption, sans-serif
55 overflow: hidden
66 height: 100%
@@ -15,13 +15,11 @@
1515 line-height: 1.2
1616 }
1717
1818 h1 {
19- color: #C0C0C0
2019 font-size: 200%
2120 margin: 4px 0
2221 font-weight: normal
23- text-shadow: 0px 0px 2px black
2422 flex: 1
2523 }
2624
2725 select {
@@ -75,9 +73,9 @@
7573 font-family: inherit
7674 }
7775
7876 a {
79- color: #ebf7b1
77+ color: #286bc3
8078 text-decoration: none
8179
8280 code {
8381 color: #8EC1FC
styles/index.jsView
@@ -3,17 +3,18 @@
33 var compile = require('micro-css')
44 var result = ''
55 var additional = ''
66
7+additional += fs.readFileSync(require.resolve('patchbay/style.css'), 'utf8')
8+
79 fs.readdirSync(__dirname).forEach(function (file) {
810 if (/\.mcss$/i.test(file)) {
911 result += fs.readFileSync(path.resolve(__dirname, file), 'utf8') + '\n'
1012 }
1113
1214 if (/\.css$/i.test(file)) {
15+ console.log(file)
1316 additional += fs.readFileSync(path.resolve(__dirname, file), 'utf8') + '\n'
1417 }
1518 })
1619
17-additional += fs.readFileSync(require.resolve('patchbay/style.css'), 'utf8')
18-
1920 module.exports = compile(result) + additional
styles/main-window.mcssView
@@ -24,9 +24,9 @@
2424 -webkit-app-region: drag;
2525 display: flex;
2626 background: #fff;
2727 padding: 10px;
28- border-bottom: 2px solid #e2e2e2;
28+ border-bottom: 2px solid #e4edff;
2929 box-shadow: 0 0 3px #7f7f7f;
3030 position: relative;
3131
3232 span {
styles/patchbay-tweaks.cssView
@@ -1,0 +1,17 @@
1+.message {
2+ background-color: white;
3+}
4+
5+.scroller__wrapper {
6+ width: 600px;
7+ padding: 20px;
8+}
9+
10+.compose__controls > input[type=file] {
11+ flex: 1;
12+ padding: 5px;
13+}
14+
15+a.avatar {
16+ display: inline
17+}

Built with git-ssb-web