Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
969e7e2f
Commit
969e7e2f
authored
Jun 22, 2020
by
NGPixel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: table styles dark mode
parent
abe86928
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
2 deletions
+44
-2
editor-ckeditor.vue
client/components/editor/editor-ckeditor.vue
+11
-0
app.scss
client/themes/default/scss/app.scss
+33
-2
No files found.
client/components/editor/editor-ckeditor.vue
View file @
969e7e2f
...
...
@@ -68,6 +68,17 @@ export default {
language
:
this
.
locale
,
placeholder
:
'Type the page content here'
,
disableNativeSpellChecker
:
false
,
// TODO: Mention autocomplete
//
// mention:
{
// feeds: [
//
{
// marker: '@',
// feed: [ '@Barney', '@Lily', '@Marshall', '@Robin', '@Ted' ],
// minimumCharacters: 1
//
}
// ]
//
}
,
wordCount
:
{
onUpdate
:
stats
=>
{
this
.
stats
=
{
...
...
client/themes/default/scss/app.scss
View file @
969e7e2f
...
...
@@ -662,24 +662,46 @@
border-collapse
:
collapse
;
box-shadow
:
0
0
5px
0
rgba
(
0
,
0
,
0
,
.07
);
@at-root
.theme--dark
&
{
background-color
:
darken
(
mc
(
'grey'
,
'900'
)
,
3%
);
}
td
,
th
{
border
:
1px
solid
mc
(
'blue-grey'
,
'100'
);
box-shadow
:
inset
-1px
-1px
0
0
#FFF
,
inset
1px
0
0
#FFF
;
padding
:
.5rem
.75rem
;
@at-root
.theme--dark
&
{
border-color
:
mc
(
'grey'
,
'700'
);
box-shadow
:
inset
-1px
-1px
0
0
rgba
(
0
,
0
,
0
,
.5
);
}
}
th
{
background-color
:
lighten
(
mc
(
'blue-grey'
,
'50'
)
,
1%
);
;
background-color
:
lighten
(
mc
(
'blue-grey'
,
'50'
)
,
1%
);
font-weight
:
700
;
color
:
mc
(
'grey'
,
'800'
);
color
:
mc
(
'blue-grey'
,
'700'
);
@at-root
.theme--dark
&
{
background-color
:
mc
(
'grey'
,
'800'
);
color
:
mc
(
'grey'
,
'400'
);
}
}
thead
th
{
border-bottom
:
2px
solid
mc
(
'blue-grey'
,
'100'
);
@at-root
.theme--dark
&
{
border-bottom
:
none
;
}
}
tbody
th
{
background-color
:
lighten
(
mc
(
'blue-grey'
,
'50'
)
,
4%
);
@at-root
.theme--dark
&
{
background-color
:
darken
(
mc
(
'grey'
,
'800'
)
,
8%
);
}
}
}
}
...
...
@@ -842,6 +864,15 @@
}
}
.mention
{
background-color
:
rgba
(
153
,
0
,
48
,
.1
);
color
:
#990030
;
@at-root
.theme--dark
&
{
color
:
mc
(
'pink'
,
'500'
);
}
}
}
// ---------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment