Skip to content

Commit

Permalink
Merge branch 'feature/#1_fix-text-size-bug' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
yusukesaitoh committed Mar 29, 2020
2 parents 6277211 + 82932bc commit 7215af6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"description": "__MSG_appDescription__",
"version": "1.0.0",
"version": "1.0.1",
"manifest_version": 2,
"default_locale": "en",
"icons": {
Expand Down
12 changes: 6 additions & 6 deletions app/styles/contentscript.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ body {
}

&.isTrendsHidden {
div[data-testid="sidebarColumn"] div.css-1dbjc4n.r-1l5qxre.r-m611by > div:not(:first-child):not(:last-child) {
div[data-testid="sidebarColumn"] > div > div > div > div > div.css-1dbjc4n > div:not(:first-child):not(:last-child) {
display: none !important;
}
div[data-testid="sidebarColumn"] div.css-1dbjc4n.r-1l5qxre.r-m611by > div:last-child {
div[data-testid="sidebarColumn"] > div > div > div > div > div.css-1dbjc4n > div:last-child {
margin-top: 60px !important;
}
}

&.isReactionNumberHidden {
div[data-testid="primaryColumn"] article div.r-1mdbhws span.r-1n0xq6e {
div[data-testid="primaryColumn"] article div[role="group"] div[role="button"] span {
opacity: 0 !important;
transition-property: transform, opacity !important;
}
div[data-testid="primaryColumn"] article:hover div.r-1mdbhws span.r-1n0xq6e {
div[data-testid="primaryColumn"] article:hover div[role="group"] div[role="button"] span {
opacity: 1 !important;
}
}
Expand All @@ -28,8 +28,8 @@ body {
header[role="banner"] h1[role="heading"] {
&::after {
position: absolute;
left: 56px;
top: 15px;
left: 3.75em;
top: 1em;
display: inline-block;
width: 120px;
font-weight: 700;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "calm-twitter",
"private": true,
"version": "1.0.0",
"version": "1.0.1",
"description": "This extension hides trending information from twitter timelines to make your mind calm.",
"scripts": {
"start": "npm run dev:chrome",
Expand Down

0 comments on commit 7215af6

Please sign in to comment.