Skip to content

Testing testautomation frameworks #260

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: 4.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ script:
- npm run lint:ci
- npm run build:all
- npm run cypress:ci
- export APPLITOOLS_BATCH_ID=`echo ${TRAVIS_PULL_REQUEST_SHA:=$TRAVIS_COMMIT}`
- npm run e2e-saucelabs
# unlink the library projects
before_cache:
- npm remove -g @angular-generic-table/core
Expand Down
10 changes: 0 additions & 10 deletions @angular-generic-table/core/generic-table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ $gt-table-cell-padding: $table-cell-padding !default;
$gt-table-cell-padding-sm: $table-cell-padding-sm !default;
$gt-table-cell-padding-expanded: 0 !default;
$gt-medium-width: map-get($grid-breakpoints, md) !default;

// basic table styles for sorting and for stacked table layout
generic-table {
table {
Expand Down Expand Up @@ -86,7 +85,6 @@ generic-table {
}
}
}

span.gt-row-label,
th.gt-sort-label {
display: none;
Expand All @@ -97,7 +95,6 @@ generic-table {
padding-bottom: 0;
width: 1px;
}

tr.row-expanded > td {
padding: $gt-table-cell-padding-expanded;
}
Expand Down Expand Up @@ -152,11 +149,9 @@ generic-table {
opacity: 1;
}
}

thead.gt-totals {
border-bottom: 2px solid $gt-table-border-color;
}

tfoot.gt-totals {
border-top: 2px solid $gt-table-border-color;
}
Expand All @@ -179,12 +174,10 @@ generic-table {
vertical-align: middle;
}
}

.gt-dropdown-menu.show {
max-height: 320px;
overflow: auto;
}

// get break point for medium devices from bootstrap
@media (max-width: $gt-medium-width) {
generic-table {
Expand All @@ -209,7 +202,6 @@ generic-table {
& + tr {
border-top: 1px solid #ddd;
}

td {
display: block;
border: none;
Expand All @@ -232,12 +224,10 @@ generic-table {
}
}
}

@keyframes fade-in {
0% {
opacity: 0;
}

100% {
opacity: 1;
}
Expand Down
Loading