Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sitestudio_extras
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
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
project
sitestudio_extras
Merge requests
!5
Replaces the use of jQuery with plain JavaScript.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Replaces the use of jQuery with plain JavaScript.
issue/sitestudio_extras-3502585:3502585-remove-jquery-ui
into
1.0.x
Overview
0
Commits
3
Pipelines
2
Changes
5
Merged
Kevin Funk
requested to merge
issue/sitestudio_extras-3502585:3502585-remove-jquery-ui
into
1.0.x
3 months ago
Overview
0
Commits
3
Pipelines
2
Changes
5
Expand
Closes
#3502585
0
0
Merge request reports
Compare
1.0.x
version 3
967cf1b7
2 months ago
version 2
074d5631
2 months ago
version 1
acc821e7
3 months ago
1.0.x (base)
and
latest version
latest version
967cf1b7
3 commits,
2 months ago
version 3
967cf1b7
3 commits,
2 months ago
version 2
074d5631
2 commits,
2 months ago
version 1
acc821e7
1 commit,
3 months ago
5 files
+
126
−
75
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
css/sitestudio_extras.autocomplete.css
0 → 100644
+
49
−
0
Options
/* Base styles for the autocomplete list */
.sitestudio-extras-autocomplete-list
{
position
:
absolute
;
background-color
:
#fff
;
border-radius
:
4px
;
box-shadow
:
0
2px
4px
rgba
(
0
,
0
,
0
,
0.1
);
max-height
:
200px
;
overflow-y
:
auto
;
padding
:
0
;
margin
:
0
;
list-style
:
none
;
z-index
:
1000
;
display
:
block
;
}
/* Style for each list item */
.sitestudio-extras-autocomplete-list
li
{
padding
:
8px
12px
;
cursor
:
pointer
;
font-size
:
14px
;
color
:
#333
;
}
/* Highlight item on hover */
.sitestudio-extras-autocomplete-list
li
:hover
{
background-color
:
#f0f0f0
;
}
/* Style for "No Results" message */
.sitestudio-extras-autocomplete-list
.no-result
{
font-style
:
italic
;
color
:
#999
;
text-align
:
center
;
padding
:
10px
;
}
/* Add a scrollbar for overflow */
.sitestudio-extras-autocomplete-list
::-webkit-scrollbar
{
width
:
6px
;
}
.sitestudio-extras-autocomplete-list
::-webkit-scrollbar-thumb
{
background-color
:
#ccc
;
border-radius
:
4px
;
}
.sitestudio-extras-autocomplete-list
::-webkit-scrollbar-thumb:hover
{
background-color
:
#aaa
;
}
Loading