diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index a21c17aac5..9ebc85a701 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -45,7 +45,6 @@ jobs: node-version: ${{ matrix.node-version }} - name: Install dependencies run: | - sudo apt install yarn npm --no-install-recommends yarn install - name: Run unit tests with yarn diff --git a/timesketch/frontend-ng/src/assets/main.scss b/timesketch/frontend-ng/src/assets/main.scss index 9a63d7a6d5..455caf13d4 100644 --- a/timesketch/frontend-ng/src/assets/main.scss +++ b/timesketch/frontend-ng/src/assets/main.scss @@ -161,16 +161,26 @@ html { } .light-info-card { - background-color: rgba(33, 150, 243, .1); + background-color: #e7f4fe; color: #333; border-radius: 6px; } .dark-info-card { - background-color: rgba(33, 150, 243, .1); + background-color: #131F29; color:#fff; border-radius: 6px; - border:1px solid rgba(33, 150, 243, 0.3); + border:1px solid #174366; +} + +.light-info-accordion { + background-color: #e7f4fe; + color: #333; +} + +.dark-info-accordion { + background-color: #131F29; + color:#fff; } .timeline-name-ellipsis { diff --git a/timesketch/frontend-ng/src/components/Scenarios/ContextCard.vue b/timesketch/frontend-ng/src/components/Scenarios/ContextCard.vue index ca771c1663..9d05cb1216 100644 --- a/timesketch/frontend-ng/src/components/Scenarios/ContextCard.vue +++ b/timesketch/frontend-ng/src/components/Scenarios/ContextCard.vue @@ -14,7 +14,11 @@ See the License for the specific language governing permissions and limitations under the License. -->