Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
anfragen-pool-ux-improver
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Seipel
anfragen-pool-ux-improver
Compare revisions
3a5a6332f03b36389457f339b81c95628ecbfe03 to 2e65ce03ccd8f097a4dd6ab88648f85528bcb1d4
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
Jan.Seipel/test-ap-ux-improver
Select target project
No results found
2e65ce03ccd8f097a4dd6ab88648f85528bcb1d4
Select Git revision
Branches
dev
main
2 results
Swap
Target
Jan.Seipel/test-ap-ux-improver
Select target project
Jan.Seipel/test-ap-ux-improver
1 result
3a5a6332f03b36389457f339b81c95628ecbfe03
Select Git revision
Branches
dev
main
2 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
automatischer reload jede minute, hervorheben der deadline in ticket-zoom
· 298de2f0
Jan Seipel
authored
1 year ago
298de2f0
Merge branch 'main' of
https://gitlab.ard.de/Jan.Seipel/test-ap-ux-improver
· 2e65ce03
Jan Seipel
authored
1 year ago
2e65ce03
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
stylesheets/test-ap-style-ticketzoom.css
+4
-0
4 additions, 0 deletions
stylesheets/test-ap-style-ticketzoom.css
test-ap-ux-imporver.user.js
+17
-1
17 additions, 1 deletion
test-ap-ux-imporver.user.js
with
21 additions
and
1 deletion
stylesheets/test-ap-style-ticketzoom.css
View file @
2e65ce03
...
...
@@ -53,3 +53,7 @@
padding
:
0.4em
0.6em
0.2em
0.5em
!important
;
display
:
inline-block
;
}
#Core_UI_AutogeneratedID_0
fieldset
:last-child
:nth-child
(
5
)
{
color
:
red
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
test-ap-ux-imporver.user.js
View file @
2e65ce03
...
...
@@ -2,7 +2,7 @@
// @name test-ap-ux-improver
// @namespace https://test-anfragen-pool.swrapp.net/*
// @version 2024-0
5-07_15-46
// @version 2024-0
6-12_11-34
// @resource DASHBOARD_CSS https://gitlab.ard.de/Jan.Seipel/test-ap-ux-improver/-/raw/main/stylesheets/test-ap-style-dashboard.css
// @resource TICKETZOOM_CSS https://gitlab.ard.de/Jan.Seipel/test-ap-ux-improver/-/raw/main/stylesheets/test-ap-style-ticketzoom.css
...
...
@@ -52,5 +52,21 @@ window.addEventListener('load', function() {
const
lorenz
=
[...
document
.
querySelectorAll
(
"
div[title='Lorenz Bockisch']
"
)]
lorenz
.
map
((
e
)
=>
e
.
innerText
+=
"
🦄
"
)
console
.
log
(
"
works right now
"
)
if
(
URL
.
includes
(
"
AgentDashboard
"
))
{
setInterval
(
function
(){
if
(
document
.
querySelectorAll
(
"
#Overlay
"
).
length
===
0
&&
!
[...
document
.
querySelectorAll
(
"
div[id*='setting']
"
)].
map
(
d
=>
d
.
style
.
display
).
includes
(
"
block
"
)
&&
document
.
querySelectorAll
(
"
div[class*='SettingsWidget Expanded']
"
).
length
===
0
)
{
window
.
location
.
reload
(
1
);
console
.
log
(
"
reloaded
"
)
}
else
{
console
.
log
(
"
overlay now detected
"
)
}
},
1000
*
60
);
}
},
false
);
\ No newline at end of file
This diff is collapsed.
Click to expand it.