Create events add image title in graphic page#2114
Open
Conversation
robines
requested changes
Mar 19, 2026
| </div> | ||
| </div> | ||
| ); | ||
| return <ImageTile image={image} className={className} />; |
Member
There was a problem hiding this comment.
Fint! Men kan du gjøre stylingen litt mindre "forstyrrende" til bildet som ligger bak? Enten alt eller noe av dette kan prøves:
- Gjøre teksten litt mindre
- Gjøre overlayet enda mer gjennomsiktig (men fortsatt lesbart med god kontrast)
- Kanskje legge tekst under selve bildet
Contributor
Erichseen
reviewed
Mar 21, 2026
Contributor
There was a problem hiding this comment.
AdminImage trenger vel ikke lenger å være sin egen komponent når den ikke legger til noe lenger, bare bruk ImageTile direkte ImageAdminPage 👍
| box-shadow: 0 0 25px 5px rgba(143, 181, 238, 0.625); | ||
| border: 3px solid $blue; | ||
| transform: scale(1); | ||
| } |
Contributor
There was a problem hiding this comment.
Lag denne default selected mer clean!
Contributor
There was a problem hiding this comment.
Gjør alt av selected css shit her ..? Så trenger man ikke ha masse css props osv overalt .. ?
Contributor
| } | ||
| .image_box_selected { | ||
| border: none; | ||
| } |
Contributor
There was a problem hiding this comment.
Bør nok fjernes å heller gjøre alt av selected state i ImageTile .. ?
| styles.imageContainer, | ||
| className, | ||
| selected && styles.selected, | ||
| selected && selectedClassName, |
| image: ImageDto; | ||
| className?: string; | ||
| selected?: boolean; | ||
| selectedClassName?: string; |
| image={image} | ||
| className={styles.image_box} | ||
| selected={isSelected} | ||
| selectedClassName={styles.image_box_selected} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


The two pages now inherit structure and styling from the same component, providing a more unified look. This includes the labels.