-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add options to select relative path for downloaded screenshots and wh…
…ether to provide a file chooser (#11); add help tooltips in options; extract CSS to options.css; bump version to 1.9.0
- Loading branch information
Showing
7 changed files
with
180 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
body { | ||
font-size: 1.11em; | ||
} | ||
|
||
input, select { | ||
font-size: 1em; | ||
font-family: inherit; | ||
} | ||
|
||
.detail-rows { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.detail-row { | ||
display: flex; | ||
flex-direction: row; | ||
line-height: 50px; | ||
min-height: 50px; | ||
border-top: 1px solid rgba(12, 12, 13, 0.3); | ||
text-shadow: 0 1px 1px #fefffe; | ||
} | ||
|
||
.detail-row img[alt="help"] { | ||
width: 24px; | ||
height: 24px; | ||
position: relative; | ||
top: 6px; | ||
margin-left: 6px; | ||
cursor: help; | ||
opacity: .5; | ||
transition: .3s opacity ease-in; | ||
} | ||
|
||
.detail-row img[alt="help"]:hover { | ||
opacity: 1; | ||
} | ||
|
||
.detail-row.join-previous { | ||
border-top: none; | ||
margin-top: -20px; | ||
} | ||
|
||
.detail-row-label { | ||
width: 250px; | ||
max-width: 250px; | ||
} | ||
|
||
.detail-row-label, .detail-row-single { | ||
margin-left: 6px; | ||
width: 100%; | ||
} | ||
|
||
#destination-relative-path { | ||
width: 300px; | ||
} | ||
|
||
#quality-label { | ||
transition: .3s opacity ease-in; | ||
opacity: 0; | ||
} | ||
|
||
#quality-label.visible { | ||
opacity: 1; | ||
} | ||
|
||
#quality { | ||
width: 70px; | ||
} | ||
|
||
#max-height { | ||
width: 100px; | ||
} | ||
|
||
fieldset { | ||
margin-top: 20px; | ||
font-style: italic; | ||
padding: 10px 15px; | ||
min-height: 100px; | ||
position: relative; | ||
} | ||
|
||
fieldset button { | ||
position: absolute; | ||
right: 15px; | ||
bottom: 10px; | ||
font: inherit; | ||
background: #e6e6e6; | ||
color: black; | ||
font-style: normal; | ||
min-height: 30px; | ||
min-width: 200px; | ||
text-align: center; | ||
border: none; | ||
} | ||
|
||
fieldset button:hover { | ||
background: #cecece; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters