Commit graph

161 commits

Author SHA1 Message Date
Baltazar Gomez
605136ac64
Merge branch 'master' into fix-viewer 2018-08-03 13:00:37 -06:00
btzr-io
3c3e4c0d46 use scss spacing variables 2018-08-03 12:34:08 -06:00
btzr-io
2cc5f882fe fix page index position #1847 2018-08-02 19:46:39 -06:00
btzr-io
2109685d5a use atom dark theme for codeMirror 2018-08-01 15:50:36 -06:00
Sean Yesmunt
e4f4909725
Merge pull request #1817 from lbryio/next-video
recommended content v1
2018-07-31 15:42:25 -04:00
Sean Yesmunt
7341340d3b remove extra channel spacing 2018-07-31 15:29:28 -04:00
btzr-io
77cfcc84a8 reduce !important rule usage and fix fullscreen styles 2018-07-28 15:27:28 -06:00
btzr-io
3d4c3373d5 fix text selection 2018-07-28 14:17:06 -06:00
btzr-io
842fbcc668 implement syntax highlighter 2018-07-27 19:42:35 -06:00
btzr-io
be458863df add docx-viewer 2018-07-26 20:06:39 -06:00
btzr-io
c622314eff add code-viewer 2018-07-26 18:24:00 -06:00
Shawn Khameneh
2ccf40b18e
Merge branch 'master' into wallet-encryption 2018-07-25 14:30:24 -05:00
Sean Yesmunt
87f8988faa fix fileCard title spacing 2018-07-25 14:37:51 -04:00
Sean Yesmunt
1a51628905 cleanup css 2018-07-25 14:21:41 -04:00
Sean Yesmunt
a7c6135afd fix spacing 2018-07-24 21:10:33 -04:00
Sean Yesmunt
95fee660ad add rest of channel content to the side of the file viewer 2018-07-24 20:50:04 -04:00
btzr-io
71e7a31841 fix list style 2018-07-22 15:28:33 -06:00
Sean Yesmunt
9128a61051 fix community spacing at the bottom of the page 2018-07-20 11:32:44 -04:00
Shawn Khameneh
097a523b39
Merge branch 'master' into wallet-encryption 2018-07-20 09:45:56 -04:00
Sean Yesmunt
8ed40be8a4 better thumbnail placeholder 2018-07-19 10:51:21 -04:00
Sean Yesmunt
a68f276fb0 use variables for thumbnail size 2018-07-19 10:51:21 -04:00
Sean Yesmunt
6df4032c90 improve thumbnail preview styling 2018-07-19 10:51:21 -04:00
Sean Yesmunt
45de83fdf3 thumbnail preview on publish page 2018-07-19 10:51:21 -04:00
Shawn Khameneh
6809ac3e3a Add basic wallet encryption flows 2018-07-18 15:48:30 -04:00
Sean Yesmunt
70a860b8d0 Fix spacing on community row 2018-07-13 11:29:25 -04:00
Sean Yesmunt
cbefacf673 add hidden message on subscriptions page 2018-07-13 11:26:36 -04:00
Sean Yesmunt
90d617dbc9 hide community row if nsfw content is hidden 2018-07-12 19:05:04 -04:00
btzr-io
e69dc3cd5a fix pdfViewer css 2018-07-10 10:33:02 -04:00
btzr-io
03c9e53dd2 add pdf-viewer
reduce lbry.getMedia calls

update fileRender logic
2018-07-10 10:33:02 -04:00
Baltazar Gomez
78029ce5c3 import scss 2018-07-10 10:32:14 -04:00
Baltazar Gomez
a3a02995fb add file-render.scss 2018-07-10 10:32:14 -04:00
btzr-io
9b5ac83f68 more fixes
- Update fileRender logic

- Fix missing file source
2018-07-10 10:32:14 -04:00
Sean Yesmunt
adaec74e78 move tourniquet style to button 2018-07-02 18:22:59 -04:00
Sean Yesmunt
f2b49cb4e8 move max-width styling to table instead of button 2018-07-02 18:04:33 -04:00
Sean Yesmunt
b79d13b44d ensure all publish form errors have same styling 2018-07-02 18:04:33 -04:00
Jeremy Kauffman
b1127c51c9
Merge pull request #1709 from lbryio/patch-1705
fix: increase sidebar width on large screens (#1705)
2018-07-02 12:58:49 -04:00
Sean Yesmunt
d3c02434dd set button links to display: inline 2018-06-28 13:50:58 -04:00
seanyesmunt
6da1157fbd fix: increase sidebar width on large screens 2018-06-28 00:16:11 -04:00
Electron - Mark Firth
82bb20f63d
2nd Column Lost it's Colour
When the new code was added the `var(--color-help)` was lost and it defaulted back to **brash white**. This adds the `var(--color-help)` back in.
2018-06-27 21:22:14 +10:00
Sean Yesmunt
f0f98945fa
Merge pull request #1692 from Invariant-Change/patch-1
Tourniquets Text Over 20VW to Fix Table Length Issue
2018-06-27 01:53:47 -04:00
Electron - Mark Firth
c68eaba650
Only Affects Help Table
table.table--help {
  td:nth-of-type(1) {
    color: var(--text-color);
    font-family: 'metropolis-semibold';
    min-width: 130px;
  }
    td:nth-of-type(2) {
/*Tourniquets text over 20VW*/
    max-width: 20vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
2018-06-27 01:21:30 +10:00
Electron - Mark Firth
689fe25a72
Tourniquets Text Over 20VW to Fix Table Length Issue
Same CSS fix as https://github.com/lbryio/lbry-app/pull/1692
2018-06-26 23:40:44 +10:00
Electron - Mark Firth
4b282b7050
Over VW Comment Change
Over VW Comment Change
2018-06-26 16:48:10 +10:00
Electron - Mark Firth
b846831608
VW Fixes Responsive Issues
Using 400px still breaks if at minimum width. However, using Viewport Width (vw) makes it responsive, thus it works at all sizes without out the need for condition media queries.
2018-06-26 16:43:44 +10:00
Electron - Mark Firth
454b1c243e
Tourniquets Text Over 400px to Fix Table Length Issue
Fixes table length issue.
2018-06-26 16:16:50 +10:00
Sean Yesmunt
acda4022a3 remove max-width on search input 2018-06-25 11:20:51 -04:00
Sean Yesmunt
00f97259e2 change header height back to 60px 2018-06-25 02:53:13 -04:00
Sean Yesmunt
1f0d59c444 improve spacing on file page 2018-06-25 02:48:27 -04:00
Sean Yesmunt
218a328cac add back fixed header 2018-06-25 02:07:45 -04:00
Electron - Mark Firth
f952719bb0
Spell Checker CSS Style Changes
These changes follow typical styling for spelling errors in most applications which means people are familiar with them which avoids confusion. The changes also mean that the incorrect spelling style is more visible especially in the Dark theme where it was almost impossible to see.
2018-06-25 01:27:34 +10:00