Skip to content

Commit e764849

Browse files
author
OpenShift Bot
authored
Merge pull request #476 from spadgett/mobile-project-list-buttons
Merged by openshift-bot
2 parents c3ee77e + 9d96501 commit e764849

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

app/styles/_core.less

+6-2
Original file line numberDiff line numberDiff line change
@@ -787,8 +787,12 @@ a.subtle-link {
787787
}
788788

789789
.project-summary {
790-
.flex(@columns: 1 0 90%);
791-
max-width: 90%; // enable truncation without offsetting delete icon
790+
.flex(@columns: 1 0 80%);
791+
max-width: 80%; // enable truncation without offsetting delete icon
792+
@media (min-width: @screen-sm-min) {
793+
.flex(@columns: 1 0 90%);
794+
max-width: 90%;
795+
}
792796
}
793797
.project-actions {
794798
width: 50px;

dist/styles/main.css

+3-1
Original file line numberDiff line numberDiff line change
@@ -3594,7 +3594,9 @@ label.checkbox{font-weight:400}
35943594
.action-inline i.fa,.action-inline i.pficon{color:#4d5258;margin-right:5px}
35953595
a.subtle-link{color:#9c9c9c;border-bottom:1px dotted #BBB}
35963596
a.subtle-link:active,a.subtle-link:focus,a.subtle-link:hover{color:#00659c;border-bottom:1px dotted #00659c;text-decoration:none}
3597-
.project-summary{-webkit-flex:1 0 90%;-moz-flex:1 0 90%;-ms-flex:1 0 90%;flex:1 0 90%;max-width:90%}
3597+
.project-summary{-webkit-flex:1 0 80%;-moz-flex:1 0 80%;-ms-flex:1 0 80%;flex:1 0 80%;max-width:80%}
3598+
@media (min-width:768px){.project-summary{-webkit-flex:1 0 90%;-moz-flex:1 0 90%;-ms-flex:1 0 90%;flex:1 0 90%;max-width:90%}
3599+
}
35983600
.project-actions{width:50px}
35993601
.tasks{margin-bottom:20px;padding-left:15px;padding-right:15px;padding-bottom:10px}
36003602
.tasks.success{border:1px solid #3f9c35;border-left:3px solid #3f9c35}

0 commit comments

Comments
 (0)