Skip to content
GitLab
Explorer
Connexion
Navigation principale
Rechercher ou aller à…
Projet
La boîte à rêves
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Wiki
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Extraits de code
Compilation
Pipelines
Jobs
Planifications de pipeline
Artéfacts
Déploiement
Releases
Registre de paquets
Registre de conteneur
Registre de modèles
Opération
Environnements
Modules Terraform
Surveillance
Incidents
Service d'assistance
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse CI/CD
Données d'analyse du dépôt
Expériences du modèle
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
La boîte à rêves
La boîte à rêves
Validations
3d149621
Valider
3d149621
rédigé
il y a un mois
par
Jouski
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
css
parent
9111fa4e
Aucune branche associée trouvée
Branches contenant la validation
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Pipeline
#81875
réussi
il y a un mois
Stage: test
Stage: deploy
Modifications
4
Pipelines
1
Masquer les modifications d'espaces
En ligne
Côte à côte
Affichage de
4 fichiers modifiés
index.html
+1
-1
1 ajout, 1 suppression
index.html
polices/GreatVibes-Regular.otf
+0
-0
0 ajout, 0 suppression
polices/GreatVibes-Regular.otf
script.js
+2
-2
2 ajouts, 2 suppressions
script.js
style.css
+23
-4
23 ajouts, 4 suppressions
style.css
avec
26 ajouts
et
7 suppressions
index.html
+
1
−
1
Voir le fichier @
3d149621
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
<tr>
<tr>
<th>
Sujet
</th>
<th>
Sujet
</th>
<th>
Votes
</th>
<th>
Votes
</th>
<th>
Auteu
r
</th>
<th>
Ouvert pa
r
</th>
<th>
Dernier message
</th>
<th>
Dernier message
</th>
</tr>
</tr>
</thead>
</thead>
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
polices/GreatVibes-Regular.otf
0 → 100644
+
0
−
0
Voir le fichier @
3d149621
Fichier ajouté
Ce diff est replié.
Cliquez pour l'agrandir.
script.js
+
2
−
2
Voir le fichier @
3d149621
...
@@ -29,14 +29,14 @@ function displayIssues(issues) {
...
@@ -29,14 +29,14 @@ function displayIssues(issues) {
}
}
row
.
innerHTML
=
`
row
.
innerHTML
=
`
<td><a href="
${
issue
.
web_url
}
" target="_blank">
${
issue
.
title
}
</a>
<td><a
class="titre"
href="
${
issue
.
web_url
}
" target="_blank">
${
issue
.
title
}
</a>
<br>
<br>
${
description
}
${
description
}
<br>
<br>
<a class="bouton" href="
${
issue
.
web_url
}
" target="_blank">Lire en entier et répondre</a>
<a class="bouton" href="
${
issue
.
web_url
}
" target="_blank">Lire en entier et répondre</a>
</td>
</td>
<td>
${
issue
.
upvotes
}
👍</td>
<td>
${
issue
.
upvotes
}
👍</td>
<td><img class="avatar" src="
${
issue
.
author
.
avatar_url
}
">
${
issue
.
author
.
name
}
</td>
<td
class="auteur"
><img class="avatar" src="
${
issue
.
author
.
avatar_url
}
">
${
issue
.
author
.
name
}
</td>
<td>
${
new
Date
(
issue
.
updated_at
).
toLocaleDateString
()}
</td>
<td>
${
new
Date
(
issue
.
updated_at
).
toLocaleDateString
()}
</td>
`
;
`
;
tableBody
.
appendChild
(
row
);
tableBody
.
appendChild
(
row
);
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
style.css
+
23
−
4
Voir le fichier @
3d149621
...
@@ -2,11 +2,16 @@
...
@@ -2,11 +2,16 @@
box-sizing
:
border-box
;
box-sizing
:
border-box
;
}
}
@font-face
{
font-family
:
GreatVibesRegular
;
src
:
url(polices/GreatVibes-Regular.otf)
;
}
body
{
body
{
font-family
:
Arial
,
sans-serif
;
font-family
:
Arial
,
sans-serif
;
margin
:
0
;
margin
:
0
;
padding
:
0
;
padding
:
0
;
background-color
:
rgb
(
179
,
179
,
24
1
);
background-color
:
rgb
(
220
,
220
,
24
2
);
color
:
#333
;
color
:
#333
;
min-height
:
100vh
;
min-height
:
100vh
;
padding-bottom
:
60px
;
padding-bottom
:
60px
;
...
@@ -16,7 +21,7 @@ body {
...
@@ -16,7 +21,7 @@ body {
/* Header styles */
/* Header styles */
header
{
header
{
background
-color
:
#6b63ff83
;
background
:
linear-gradient
(
to
bottom
,
#d3adff
,
transparent
)
;
color
:
white
;
color
:
white
;
padding
:
1rem
;
padding
:
1rem
;
text-align
:
center
;
text-align
:
center
;
...
@@ -25,8 +30,11 @@ header {
...
@@ -25,8 +30,11 @@ header {
}
}
header
h1
{
header
h1
{
font-size
:
1.8rem
;
font-family
:
GreatVibesRegular
;
margin
:
1rem
0
;
font-size
:
4rem
;
line-height
:
4rem
;
margin
:
0
;
color
:
#0a1f4f
;
}
}
header
img
{
header
img
{
...
@@ -122,6 +130,10 @@ table a.bouton {
...
@@ -122,6 +130,10 @@ table a.bouton {
transition
:
background-color
0.3s
ease
;
transition
:
background-color
0.3s
ease
;
}
}
table
a
.titre
{
font-weight
:
bold
;
}
table
a
.bouton
:hover
{
table
a
.bouton
:hover
{
background-color
:
#0056b3
;
background-color
:
#0056b3
;
}
}
...
@@ -132,6 +144,13 @@ th, td {
...
@@ -132,6 +144,13 @@ th, td {
border-bottom
:
1px
solid
#ddd
;
border-bottom
:
1px
solid
#ddd
;
}
}
td
.auteur
{
width
:
250px
;
/* Limiter la largeur à 250px */
white-space
:
nowrap
;
/* Empêcher le texte de passer à la ligne suivante */
overflow
:
hidden
;
/* Masquer le texte qui dépasse */
text-overflow
:
ellipsis
;
/* Ajouter des points de suspension (...) si le texte est trop long */
}
th
{
th
{
background-color
:
#6c63ff
;
background-color
:
#6c63ff
;
color
:
white
;
color
:
white
;
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter