Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yPhil
Pétrolette
Commits
30d54446
Commit
30d54446
authored
Feb 17, 2021
by
yPhil
Browse files
Sensible color variable scoping (yes, again)
parent
c3f251fd
Changes
4
Hide whitespace changes
Inline
Side-by-side
public/css/petrolette.css
View file @
30d54446
...
...
@@ -522,10 +522,6 @@ input {
padding
:
0.4em
;
}
input
#feedGuess
{
margin-right
:
0.4em
;
}
/* div#searchPrefix { */
/* display: flex; */
...
...
@@ -681,11 +677,14 @@ i.tab-icon {
/* } */
button
#feedGuess
,
.ui-spinner
{
margin
:
0
;
}
button
#feed-guess
{
margin-left
:
0.4em
;
}
fieldset
.menuForm
{
display
:
-webkit-flex
;
height
:
100%
;
...
...
@@ -1187,7 +1186,7 @@ li.feed-item > div.itemDiv > a > .ptl-img {
}
li
.feed-item
img
:hover
{
outline
:
1px
solid
var
(
--color-
sec
);
outline
:
1px
solid
var
(
--color-
ter
);
}
li
.feed-item
>
div
.itemDiv
>
a
>
.ptl-img.full
>
a
img
,
...
...
public/js/PTL.dialog.js
View file @
30d54446
...
...
@@ -323,12 +323,6 @@ PTL.dialog = {
if
(
isNewFeed
)
$killFeedFieldset
.
remove
();
if
(
!
PTL
.
util
.
isMobile
())
{
$guessField
.
click
(
function
()
{
$
(
this
).
select
();
});
}
$guessButton
.
click
(
function
()
{
$guessSpinner
...
...
@@ -818,10 +812,6 @@ PTL.dialog = {
var
$tab
=
$
(
'
a#
'
+
$
(
this
).
data
(
'
tabId
'
)).
parent
(
'
li
'
);
$tabName
.
click
(
function
()
{
$
(
this
).
select
();
});
$tabLeft
.
button
().
click
(
function
()
{
PTL
.
util
.
moveEltLeft
(
$tab
);
});
...
...
public/js/PTL.prefs.js
View file @
30d54446
...
...
@@ -28,7 +28,7 @@ PTL.prefs = (function() {
],
[
{
"
url
"
:
"
https://hacks.mozilla.org/feed/
"
,
"
type
"
:
"
mixed
"
,
"
limit
"
:
4
,
"
status
"
:
"
on
"
},
{
"
url
"
:
"
http://feeds.arstechnica.com/arstechnica/index
"
,
"
type
"
:
"
text
"
,
"
limit
"
:
12
,
"
status
"
:
"
on
"
}
{
"
url
"
:
"
http://feeds.arstechnica.com/arstechnica/index
"
,
"
type
"
:
"
mixed
"
,
"
limit
"
:
8
,
"
status
"
:
"
on
"
}
],
[
{
"
url
"
:
"
https://www.reddit.com/.rss
"
,
"
type
"
:
"
mixed
"
,
"
limit
"
:
4
,
"
status
"
:
"
on
"
},
...
...
@@ -45,10 +45,6 @@ PTL.prefs = (function() {
[
{
"
url
"
:
"
http://www.nasa.gov/rss/dyn/lg_image_of_the_day.rss
"
,
"
type
"
:
"
photo
"
,
"
limit
"
:
3
,
"
status
"
:
"
on
"
},
{
"
url
"
:
"
https://www.youtube.com/feeds/videos.xml?user=AnimalPlanetTV
"
,
"
type
"
:
"
mixed
"
,
"
limit
"
:
3
,
"
status
"
:
"
off
"
}
]
]
...
...
public/templates/dialogs.html
View file @
30d54446
...
...
@@ -14,7 +14,7 @@
/>
<button
id=
"feed-guess"
data-title=
"Find the feed for this URL, or build a new one from the search query"
class=
"shrink translate"
class=
"shrink translate
last
"
type=
"button"
>
<i
class=
"icon-search"
></i>
</button>
...
...
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