Skip to content
GitLab
Explorer
Connexion
S'inscrire
Navigation principale
Rechercher ou aller à…
Projet
P
parlote-facil
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
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
facil
parlote-facil
Validations
cc0e04ea
Valider
cc0e04ea
rédigé
13 years ago
par
danielgrippi
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
DG MS; fix user controls
parent
691bdb96
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Modifications
2
Masquer les modifications d'espaces
En ligne
Côte à côte
Affichage de
2 fichiers modifiés
app/views/posts/show.html.haml
+30
-9
30 ajouts, 9 suppressions
app/views/posts/show.html.haml
public/stylesheets/sass/new-templates.scss
+34
-2
34 ajouts, 2 suppressions
public/stylesheets/sass/new-templates.scss
avec
64 ajouts
et
11 suppressions
app/views/posts/show.html.haml
+
30
−
9
Voir le fichier @
cc0e04ea
...
@@ -56,11 +56,19 @@
...
@@ -56,11 +56,19 @@
-
if
current_user
-
if
current_user
#user-controls
#user-controls
=
link_to
"Like"
,
"#"
,
:class
=>
"label"
=
link_to
"#"
,
:class
=>
"label"
do
=
link_to
"Follow"
,
"#"
,
:class
=>
"label"
%i
.icon-heart.icon-white
=
link_to
"Reshare"
,
"#"
,
:class
=>
"label"
=
link_to
"Comment"
,
"#"
,
:class
=>
"label"
=
link_to
"#"
,
:class
=>
"label"
do
=
person_image_link
(
current_user
.
person
)
%i
.icon-plus.icon-white
=
link_to
"#"
,
:class
=>
"label"
do
%i
.icon-retweet.icon-white
=
link_to
"#"
,
:class
=>
"label"
,
do
%i
.icon-comment.icon-white
=
link_to
person_image_tag
(
current_user
.
person
),
root_path
#post-content
#post-content
...
@@ -68,8 +76,21 @@
...
@@ -68,8 +76,21 @@
=
link_to
image_tag
(
'arrow-right.png'
),
post_path
(
@post
.
id
+
1
),
:class
=>
'nav-arrow right'
,
:id
=>
'forward'
=
link_to
image_tag
(
'arrow-right.png'
),
post_path
(
@post
.
id
+
1
),
:class
=>
'nav-arrow right'
,
:id
=>
'forward'
#comment
.modal.fade
#comment
.modal.fade
.modal-header
%h3
Responses
.modal-body
.modal-body
=
form_tag
comments_path
,
:remote
=>
true
do
-
@post
.
comments
.
each
do
|
c
|
=
text_area_tag
:text
,
''
.media
=
hidden_field_tag
:post_id
,
@post
.
id
.img
=
submit_tag
'submit'
,
:onclick
=>
"$('#comment').modal('hide'); $('#text').text('')"
=
person_image_link
c
.
author
.bd
%strong
=
person_link
(
c
.
author
)
%br
=
c
.
text
.modal-footer
=
form_tag
comments_path
,
:remote
=>
true
do
=
text_area_tag
:text
,
''
,
:class
=>
'span6'
=
hidden_field_tag
:post_id
,
@post
.
id
=
submit_tag
'submit'
,
:onclick
=>
"$('#comment').modal('hide'); $('#text').text('')"
Ce diff est replié.
Cliquez pour l'agrandir.
public/stylesheets/sass/new-templates.scss
+
34
−
2
Voir le fichier @
cc0e04ea
...
@@ -34,6 +34,10 @@ $light-grey: #999;
...
@@ -34,6 +34,10 @@ $light-grey: #999;
background-size
:
cover
;
background-size
:
cover
;
}
}
@mixin
opacity
(
$val
)
{
opacity
:
$val
;
}
/* styles */
/* styles */
.multi-photo
{
.multi-photo
{
...
@@ -129,6 +133,8 @@ $light-grey: #999;
...
@@ -129,6 +133,8 @@ $light-grey: #999;
}
}
.nav-arrow
{
.nav-arrow
{
@include
opacity
(
0
.2
);
-o-transition
:
opacity
0
.3s
;
-o-transition
:
opacity
0
.3s
;
-moz-transition
:
opacity
0
.3s
;
-moz-transition
:
opacity
0
.3s
;
-webkit-transition
:
opacity
0
.3s
;
-webkit-transition
:
opacity
0
.3s
;
...
@@ -136,7 +142,6 @@ $light-grey: #999;
...
@@ -136,7 +142,6 @@ $light-grey: #999;
position
:
fixed
;
position
:
fixed
;
z-index
:
3
;
z-index
:
3
;
opacity
:
0
.2
;
top
:
45%
;
top
:
45%
;
...
@@ -144,7 +149,7 @@ $light-grey: #999;
...
@@ -144,7 +149,7 @@ $light-grey: #999;
&
.right
{
right
:
0
;
}
&
.right
{
right
:
0
;
}
&
:hover
{
&
:hover
{
opacity
:
0
.6
;
@include
opacity
(
0
.6
)
;
}
}
}
}
...
@@ -164,6 +169,10 @@ $light-grey: #999;
...
@@ -164,6 +169,10 @@ $light-grey: #999;
float
:
left
;
float
:
left
;
margin
:
0
;
margin
:
0
;
background-color
:
rgba
(
255
,
255
,
255
,
0
.8
);
max-height
:
52px
;
.avatar
{
.avatar
{
height
:
52px
;
height
:
52px
;
width
:
52px
;
width
:
52px
;
...
@@ -194,6 +203,29 @@ $light-grey: #999;
...
@@ -194,6 +203,29 @@ $light-grey: #999;
height
:
27px
;
height
:
27px
;
width
:
27px
;
width
:
27px
;
}
}
.label
{
@include
opacity
(
0
.5
);
padding
:
5px
;
margin-right
:
5px
;
line-height
:
24px
;
padding-top
:
3px
;
padding-right
:
2px
;
i
{
padding
:
0
;
margin
:
0
;
}
background-color
:
#000
;
color
:
#fff
;
&
:hover
{
@include
opacity
(
1
);
text-decoration
:
none
;
}
}
}
}
#post-content
{
#post-content
{
...
...
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