Details
-
Story
-
Status: Resolved (View Workflow)
-
Blocker
-
Resolution: Fixed
-
None
-
-
iapetus, 1.0, Blue Ocean 1.0-rc3
Description
The favourite card needs to be updated to reflect the new leaner design:
- Thinner
- Aligned elements
- Has last run information
Follow on from: https://issues.jenkins-ci.org/browse/JENKINS-39341 (which is nearly ready)
Please make sure that commit I'd is not prefixed with a #
Attachments
Issue Links
- is blocked by
-
JENKINS-39341 Update favourite card design
-
- Resolved
-
Activity
Field | Original Value | New Value |
---|---|---|
Link |
This issue is blocked by |
Epic Link | JENKINS-35761 [ 171656 ] |
Sprint | pannonian [ 211 ] |
Attachment | screenshot-1.png [ 35581 ] |
Rank | Ranked lower |
Rank | Ranked lower |
Epic Link | JENKINS-35761 [ 171656 ] | JENKINS-41552 [ 178366 ] |
Epic Link | JENKINS-41552 [ 178366 ] | JENKINS-35761 [ 171656 ] |
Priority | Major [ 3 ] | Minor [ 4 ] |
Sprint | pannonian [ 211 ] |
Sprint | iapetus [ 216 ] |
Rank | Ranked higher |
Rank | Ranked lower |
Priority | Minor [ 4 ] | Major [ 3 ] |
Rank | Ranked higher |
Rank | Ranked higher |
Description |
The favourite card needs to be updated to reflect the new leaner design: * Thinner * Aligned elements * Has last run information Follow on from: https://issues.jenkins-ci.org/browse/JENKINS-39341 (which is nearly ready) |
The favourite card needs to be updated to reflect the new leaner design: * Thinner * Aligned elements * Has last run information Follow on from: https://issues.jenkins-ci.org/browse/JENKINS-39341 (which is nearly ready) Please make sure that commit I'd is not prefixed with a {{#}} |
Rank | Ranked lower |
Rank | Ranked higher |
Sprint | iapetus [ 216 ] | iapetus, 1.0 [ 216, 221 ] |
Rank | Ranked higher |
Rank | Ranked higher |
Rank | Ranked higher |
Priority | Major [ 3 ] | Critical [ 2 ] |
Rank | Ranked higher |
Status | Open [ 1 ] | In Progress [ 3 ] |
Sprint | iapetus, 1.0 [ 216, 221 ] | iapetus, 1.0, 1.0-rc1 [ 216, 221, 261 ] |
Status | In Progress [ 3 ] | In Review [ 10005 ] |
Priority | Critical [ 2 ] | Blocker [ 1 ] |
Resolution | Fixed [ 1 ] | |
Status | In Review [ 10005 ] | Resolved [ 5 ] |
This is where I got to changing the CSS in the DOM.
The icons are all a little off because the bounding boxes from the SVGs have been removed which makes them harder to resize & compare to the design.
```
.pipeline-card {
padding: 8px 16px;
}
.favorites-card-stack .pipeline-card {
margin-bottom: 8px;
}
.pipeline-card .actions {
min-width: 100px;
}
.pipeline-card .actions > *:hover {
color: #fff;
opacity: .75;
}
.Favorite.dark-white:hover .star-filled {
color: #fff
}
.pipeline-card .run > *,
.pipeline-card .actions > * {
margin-left: 8px;
}
.jdl-table.u-table-padding td:last-child,
.jdl-table.u-table-padding th:last-child,
.jdl-table td.u-table-padding:last-child,
.jdl-table th.u-table-padding:last-child {
padding-right: 16px;
width: 40px;
}
```