Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Engineering Digital Service
Metabase
Commits
ce17657f
Commit
ce17657f
authored
7 years ago
by
Maz Ameli
Browse files
Options
Downloads
Patches
Plain Diff
fix icon, and hover colors
parent
ceeb4955
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/src/metabase/containers/EntitySearch.jsx
+7
-8
7 additions, 8 deletions
frontend/src/metabase/containers/EntitySearch.jsx
frontend/src/metabase/css/core/colors.css
+3
-0
3 additions, 0 deletions
frontend/src/metabase/css/core/colors.css
with
10 additions
and
8 deletions
frontend/src/metabase/containers/EntitySearch.jsx
+
7
−
8
View file @
ce17657f
...
...
@@ -129,7 +129,7 @@ const SEARCH_GROUPINGS = [
},
{
name
:
"
Table
"
,
icon
:
"
table
"
,
icon
:
"
table
2
"
,
groupBy
:
(
entity
)
=>
entity
.
table
.
id
,
getGroupName
:
(
entity
)
=>
entity
.
table
.
display_name
},
...
...
@@ -179,7 +179,7 @@ export class SearchGroupingOption extends Component {
return
(
<
li
className
=
{
cx
(
"
my2 cursor-pointer text-uppercase
"
,
"
my2 cursor-pointer text-uppercase
text-green-saturated-hover
"
,
{
"
text-grey-4
"
:
!
active
},
{
"
text-green-saturated
"
:
active
}
)
}
...
...
@@ -240,7 +240,7 @@ export class GroupedSearchResultsList extends Component {
export
const
SearchResultsGroup
=
({
groupName
,
groupIcon
,
entities
})
=>
<
div
>
<
div
className
=
"flex align-center border-grey-1 bordered mt3 px2 py2"
style
=
{
{
backgroundColor
:
"
#F8F9FA
"
}
}
>
<
div
className
=
"flex align-center
bg-slate-almost-extra-light
border-grey-1 bordered mt3 px2 py2"
>
<
Icon
className
=
"mr2 text-grey-3"
name
=
{
groupIcon
}
/>
<
h4
>
{
groupName
}
</
h4
>
</
div
>
...
...
@@ -272,20 +272,19 @@ export class SearchResultListItem extends Component {
return
(
<
li
className
=
"flex py2 px3 cursor-pointer bg-
grey-0
-hover border-bottom"
className
=
"flex py2 px3 cursor-pointer bg-
slate-extra-light
-hover border-bottom"
onClick
=
{
this
.
onClick
}
>
<
h
3
className
=
"text-brand flex-full"
>
{
entity
.
name
}
</
h
3
>
<
h
4
className
=
"text-brand flex-full"
>
{
entity
.
name
}
</
h
4
>
{
hasDescription
&&
// take care of cutting off long description
<
div
className
=
"text-grey-4"
style
=
{
{
maxWidth
:
"
450px
"
}
}
>
<
div
className
=
"text-grey-4
text-small
"
style
=
{
{
maxWidth
:
"
450px
"
}
}
>
<
Ellipsified
>
{
entity
.
description
}
</
Ellipsified
>
</
div
>
}
{
!
hasDescription
&&
<
div
className
=
"text-grey-2"
>
No description
</
div
>
<
div
className
=
"text-grey-2
text-small
"
>
No description
</
div
>
}
</
li
>
)
}
}
This diff is collapsed.
Click to expand it.
frontend/src/metabase/css/core/colors.css
+
3
−
0
View file @
ce17657f
...
...
@@ -27,6 +27,7 @@
--error-color
:
#EF8C8C
;
--slate-color
:
#9BA5B1
;
--slate-light-color
:
#DFE8EA
;
--slate-almost-extra-light-color
:
#EDF2F5
;
--slate-extra-light-color
:
#F9FBFC
;
}
...
...
@@ -154,7 +155,9 @@
.bg-slate
{
background-color
:
var
(
--slate-color
);
}
.bg-slate-light
{
background-color
:
var
(
--slate-light-color
);
}
.bg-slate-almost-extra-light
{
background-color
:
var
(
--slate-almost-extra-light-color
);}
.bg-slate-extra-light
{
background-color
:
var
(
--slate-extra-light-color
);
}
.bg-slate-extra-light-hover
:hover
{
background-color
:
var
(
--slate-extra-light-color
);
}
.text-dark
,
:local
(
.text-dark
)
{
color
:
var
(
--dark-color
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment