mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-24 04:48:03 +00:00
change select user popover box-shadow (#8218)
This commit is contained in:
@@ -32,6 +32,7 @@
|
||||
border: 1px solid var(--bs-border-secondary-color);
|
||||
margin-top: 2px;
|
||||
z-index: 2;
|
||||
box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.activity-selected-modifiers {
|
||||
|
@@ -31,6 +31,7 @@
|
||||
border: 1px solid var(--bs-border-secondary-color);
|
||||
margin-top: 2px;
|
||||
z-index: 2;
|
||||
box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.activity-selected-modifiers {
|
||||
|
@@ -100,7 +100,7 @@ class LogRepoSelector extends Component {
|
||||
<i className="sf3-font sf3-font-down ml-2 toggle-icon"></i>
|
||||
</span>
|
||||
{isOpen && (
|
||||
<div className="position-absolute activity-modifier-selector-container rounded shadow" ref={ref => this.repoSelector = ref}>
|
||||
<div className="position-absolute activity-modifier-selector-container rounded" ref={ref => this.repoSelector = ref}>
|
||||
<ul className="activity-selected-modifiers px-3 py-1 list-unstyled">
|
||||
{selectedItems.map((item, index) => (
|
||||
<li key={index} className="activity-selected-modifier">
|
||||
|
@@ -131,7 +131,7 @@ class LogUserSelector extends Component {
|
||||
<i className="sf3-font sf3-font-down ml-2 toggle-icon"></i>
|
||||
</span>
|
||||
{isOpen && (
|
||||
<div className="position-absolute activity-modifier-selector-container rounded shadow" ref={ref => this.userSelector = ref}>
|
||||
<div className="position-absolute activity-modifier-selector-container rounded" ref={ref => this.userSelector = ref}>
|
||||
<ul className="activity-selected-modifiers px-3 py-1 list-unstyled">
|
||||
{selectedItems.map((item, index) => {
|
||||
return (
|
||||
|
@@ -82,7 +82,7 @@ class UserSelector extends Component {
|
||||
<i className="sf3-font sf3-font-down ml-2 toggle-icon"></i>
|
||||
</span>
|
||||
{isPopoverOpen && (
|
||||
<div className="position-absolute activity-modifier-selector-container rounded shadow" ref={ref => this.userSelector = ref}>
|
||||
<div className="position-absolute activity-modifier-selector-container rounded" ref={ref => this.userSelector = ref}>
|
||||
<ul className="activity-selected-modifiers px-3 py-1 list-unstyled">
|
||||
{selectedUsers.map((item, index) => {
|
||||
return (
|
||||
|
Reference in New Issue
Block a user