feat: edit/create rows from tables interactive content widget (#952)
* feat: create and edit rows from tables interactive widget Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de> --------- Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de> Signed-off-by: Julius Härtl <jus@bitgrid.net> Co-authored-by: Julius Härtl <jus@bitgrid.net>


@ -2,11 +2,21 @@ const { defineConfig } = require('cypress')
|
||||
|
||||
module.exports = defineConfig({
|
||||
projectId: 'ixbf9n',
|
||||
|
||||
e2e: {
|
||||
baseUrl: 'http://nextcloud.local/index.php/',
|
||||
setupNodeEvents(on, config) {
|
||||
// implement node event listeners here
|
||||
},
|
||||
pageLoadTimeout: 120000,
|
||||
pageLoadTimeout: 120000,
|
||||
},
|
||||
|
||||
component: {
|
||||
devServer: {
|
||||
framework: 'vue',
|
||||
bundler: 'webpack',
|
||||
},
|
||||
viewportWidth: 800,
|
||||
viewportHeight: 600,
|
||||
},
|
||||
})
|
||||
|
110
cypress/component/ContentReferenceWidget.cy.js
Normal file
@ -0,0 +1,110 @@
|
||||
import ContentReferenceWidget from '../../src/views/ContentReferenceWidget.vue'
|
||||
|
||||
describe('ContentReferenceWidget', () => {
|
||||
let richObject = {}
|
||||
|
||||
before(() => {
|
||||
// Load the richObject from a fixture
|
||||
cy.fixture('widgets/richObject.json')
|
||||
.then(richObjectFixture => {
|
||||
richObject = richObjectFixture
|
||||
})
|
||||
})
|
||||
|
||||
it('mounts', () => {
|
||||
mountContentWidget(richObject)
|
||||
|
||||
const title = `${richObject.emoji} ${richObject.title}`
|
||||
|
||||
// Verify the table loaded the richObject
|
||||
// by checking the title
|
||||
cy.get('.tables-content-widget h2').as('heading')
|
||||
cy.get('@heading').contains(title)
|
||||
})
|
||||
|
||||
it('can search rows', () => {
|
||||
mountContentWidget(richObject)
|
||||
|
||||
const searchTerm = 'cat'
|
||||
|
||||
// Search for the row including the above search term
|
||||
cy.get('@options').find('input').type(searchTerm)
|
||||
|
||||
// Ensure there is only one resultant row and
|
||||
// verify the row correctly includes the search term
|
||||
cy.get('@rows').its('length').should('equal', 1)
|
||||
cy.get('@rows').first().as('firstRow')
|
||||
cy.get('@firstRow').children().first().contains(searchTerm, { matchCase: false })
|
||||
})
|
||||
|
||||
it('can create a row', () => {
|
||||
mountContentWidget(richObject);
|
||||
|
||||
// Load a fixture used to reply to the create row request
|
||||
cy.fixture('widgets/createRow.json')
|
||||
.then((rowData) => {
|
||||
cy.reply('**/index.php/apps/tables/row', rowData)
|
||||
})
|
||||
|
||||
// Click the Create Row button
|
||||
cy.get('@options').find('button').click()
|
||||
|
||||
// Input row data
|
||||
cy.get('[data-cy="Name"] input').type('Hello')
|
||||
cy.get('[data-cy="Account manager"] input').type('World')
|
||||
|
||||
// Create the row and make sure the modal disappears
|
||||
cy.get('[data-cy="createRowSaveButton"]').click()
|
||||
cy.get('.modal__content').should('not.exist')
|
||||
|
||||
// Make sure the row was added and is visible
|
||||
cy.get('@rows').last().children().as('createdRow')
|
||||
cy.get('@createdRow').first().contains('Hello')
|
||||
cy.get('@createdRow').next().contains('World')
|
||||
})
|
||||
|
||||
it('can edit a row', () => {
|
||||
mountContentWidget(richObject)
|
||||
|
||||
// Load a fixture which is used to reply to the edit row request
|
||||
cy.fixture('widgets/editRow.json')
|
||||
.then((rowData) => {
|
||||
cy.reply('**/index.php/apps/tables/row/*', rowData)
|
||||
})
|
||||
|
||||
// Click the edit button on the first row
|
||||
cy.get('@rows').first().find('td.sticky button').click({ force: true })
|
||||
|
||||
// Get the first field of the Edit Row modal
|
||||
cy.get('.modal__content').as('editRowModal')
|
||||
cy.get('@editRowModal').find('.row.space-T').as('fields')
|
||||
cy.get('@fields').first().find('input').as('editNameField')
|
||||
|
||||
// Clear the current input and enter a new value
|
||||
cy.get('@editNameField').clear()
|
||||
cy.get('@editNameField').type('Giraffe')
|
||||
|
||||
// Edit the row and make sure the modal disappears
|
||||
cy.get('[data-cy="editRowSaveButton"]').click()
|
||||
cy.get('@editRowModal').should('not.exist')
|
||||
|
||||
// Check the edited row for the new value
|
||||
cy.get('@rows').first().children().as('editedRow')
|
||||
cy.get('@editedRow').first().contains('Giraffe')
|
||||
})
|
||||
})
|
||||
|
||||
function mountContentWidget(richObject) {
|
||||
cy.reply('**/index.php/apps/tables/row/table/*', richObject.rows)
|
||||
|
||||
cy.mount(ContentReferenceWidget, {
|
||||
propsData: {
|
||||
richObject,
|
||||
},
|
||||
})
|
||||
|
||||
// Get some often used elements
|
||||
cy.get('.tables-content-widget > .options').as('options')
|
||||
cy.get('.tables-content-widget .NcTable table').as('table')
|
||||
cy.get('@table').find('tbody tr[data-cy="customTableRow"]').as('rows')
|
||||
}
|
@ -29,7 +29,7 @@ describe('Test column ' + columnTitle, () => {
|
||||
cy.get('.modal__content h2').contains('Create row').should('be.visible')
|
||||
cy.get('.modal__content .title').contains(columnTitle).should('be.visible')
|
||||
cy.get('.modal__content .title').click()
|
||||
cy.get('.modal__content .select span[title="second option"]').should('be.visible')
|
||||
cy.get('.vs__dropdown-toggle .vs__selected span[title="second option"]').should('exist')
|
||||
cy.get('button').contains('Save').click()
|
||||
cy.get('.custom-table table tr td div').contains('second option').should('be.visible')
|
||||
|
||||
|
42
cypress/fixtures/widgets/createRow.json
Normal file
@ -0,0 +1,42 @@
|
||||
{
|
||||
"id": 229,
|
||||
"tableId": 49,
|
||||
"createdBy": null,
|
||||
"createdAt": null,
|
||||
"lastEditBy": null,
|
||||
"lastEditAt": null,
|
||||
"data": [
|
||||
{
|
||||
"columnId": 159,
|
||||
"value": "Hello"
|
||||
},
|
||||
{
|
||||
"columnId": 160,
|
||||
"value": "World"
|
||||
},
|
||||
{
|
||||
"columnId": 161,
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"columnId": 162,
|
||||
"value": "2024-05-30"
|
||||
},
|
||||
{
|
||||
"columnId": 164,
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"columnId": 165,
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"columnId": 166,
|
||||
"value": 30
|
||||
},
|
||||
{
|
||||
"columnId": 167,
|
||||
"value": ""
|
||||
}
|
||||
]
|
||||
}
|
46
cypress/fixtures/widgets/editRow.json
Normal file
@ -0,0 +1,46 @@
|
||||
{
|
||||
"id": 226,
|
||||
"tableId": 49,
|
||||
"createdBy": null,
|
||||
"createdAt": null,
|
||||
"lastEditBy": null,
|
||||
"lastEditAt": null,
|
||||
"data": [
|
||||
{
|
||||
"columnId": 159,
|
||||
"value": "Giraffe"
|
||||
},
|
||||
{
|
||||
"columnId": 160,
|
||||
"value": "Mr. Smith"
|
||||
},
|
||||
{
|
||||
"columnId": 161,
|
||||
"value": "Dog food every week"
|
||||
},
|
||||
{
|
||||
"columnId": 162,
|
||||
"value": "2023-01-01"
|
||||
},
|
||||
{
|
||||
"columnId": 163,
|
||||
"value": "2023-12-31"
|
||||
},
|
||||
{
|
||||
"columnId": 164,
|
||||
"value": "The dog is our best friend."
|
||||
},
|
||||
{
|
||||
"columnId": 165,
|
||||
"value": "Standard, SLA Level 2"
|
||||
},
|
||||
{
|
||||
"columnId": 166,
|
||||
"value": 80
|
||||
},
|
||||
{
|
||||
"columnId": 167,
|
||||
"value": "Likes treats"
|
||||
}
|
||||
]
|
||||
}
|
397
cypress/fixtures/widgets/richObject.json
Normal file
@ -0,0 +1,397 @@
|
||||
{
|
||||
"id": 49,
|
||||
"type": 0,
|
||||
"title": "Customers",
|
||||
"emoji": "💼",
|
||||
"ownership": "admin",
|
||||
"ownerDisplayName": "admin",
|
||||
"isShared": null,
|
||||
"onSharePermissions": null,
|
||||
"rowsCount": 3,
|
||||
"link": "http://nextcloud.local/index.php/apps/tables/#/table/49/content",
|
||||
"columns": [
|
||||
{
|
||||
"id": 159,
|
||||
"tableId": 49,
|
||||
"title": "Name",
|
||||
"createdBy": "admin",
|
||||
"createdByDisplayName": "admin",
|
||||
"createdAt": "2024-04-16 17:50:52",
|
||||
"lastEditBy": "admin",
|
||||
"lastEditByDisplayName": "admin",
|
||||
"lastEditAt": "2024-04-16 17:50:52",
|
||||
"type": "text",
|
||||
"subtype": "line",
|
||||
"mandatory": false,
|
||||
"description": "",
|
||||
"numberDefault": null,
|
||||
"numberMin": null,
|
||||
"numberMax": null,
|
||||
"numberDecimals": 0,
|
||||
"numberPrefix": "",
|
||||
"numberSuffix": "",
|
||||
"textDefault": "",
|
||||
"textAllowedPattern": "",
|
||||
"textMaxLength": -1,
|
||||
"selectionOptions": [],
|
||||
"selectionDefault": "",
|
||||
"datetimeDefault": ""
|
||||
},
|
||||
{
|
||||
"id": 160,
|
||||
"tableId": 49,
|
||||
"title": "Account manager",
|
||||
"createdBy": "admin",
|
||||
"createdByDisplayName": "admin",
|
||||
"createdAt": "2024-04-16 17:50:52",
|
||||
"lastEditBy": "admin",
|
||||
"lastEditByDisplayName": "admin",
|
||||
"lastEditAt": "2024-04-16 17:50:52",
|
||||
"type": "text",
|
||||
"subtype": "line",
|
||||
"mandatory": false,
|
||||
"description": "",
|
||||
"numberDefault": null,
|
||||
"numberMin": null,
|
||||
"numberMax": null,
|
||||
"numberDecimals": 0,
|
||||
"numberPrefix": "",
|
||||
"numberSuffix": "",
|
||||
"textDefault": "",
|
||||
"textAllowedPattern": "",
|
||||
"textMaxLength": -1,
|
||||
"selectionOptions": [],
|
||||
"selectionDefault": "",
|
||||
"datetimeDefault": ""
|
||||
},
|
||||
{
|
||||
"id": 161,
|
||||
"tableId": 49,
|
||||
"title": "Contract type",
|
||||
"createdBy": "admin",
|
||||
"createdByDisplayName": "admin",
|
||||
"createdAt": "2024-04-16 17:50:52",
|
||||
"lastEditBy": "admin",
|
||||
"lastEditByDisplayName": "admin",
|
||||
"lastEditAt": "2024-04-16 17:50:52",
|
||||
"type": "text",
|
||||
"subtype": "line",
|
||||
"mandatory": false,
|
||||
"description": "",
|
||||
"numberDefault": null,
|
||||
"numberMin": null,
|
||||
"numberMax": null,
|
||||
"numberDecimals": 0,
|
||||
"numberPrefix": "",
|
||||
"numberSuffix": "",
|
||||
"textDefault": "",
|
||||
"textAllowedPattern": "",
|
||||
"textMaxLength": -1,
|
||||
"selectionOptions": [],
|
||||
"selectionDefault": "",
|
||||
"datetimeDefault": ""
|
||||
},
|
||||
{
|
||||
"id": 162,
|
||||
"tableId": 49,
|
||||
"title": "Contract start",
|
||||
"createdBy": "admin",
|
||||
"createdByDisplayName": "admin",
|
||||
"createdAt": "2024-04-16 17:50:52",
|
||||
"lastEditBy": "admin",
|
||||
"lastEditByDisplayName": "admin",
|
||||
"lastEditAt": "2024-04-16 17:50:52",
|
||||
"type": "datetime",
|
||||
"subtype": "date",
|
||||
"mandatory": false,
|
||||
"description": "",
|
||||
"numberDefault": null,
|
||||
"numberMin": null,
|
||||
"numberMax": null,
|
||||
"numberDecimals": 0,
|
||||
"numberPrefix": "",
|
||||
"numberSuffix": "",
|
||||
"textDefault": "",
|
||||
"textAllowedPattern": "",
|
||||
"textMaxLength": -1,
|
||||
"selectionOptions": [],
|
||||
"selectionDefault": "",
|
||||
"datetimeDefault": "today"
|
||||
},
|
||||
{
|
||||
"id": 163,
|
||||
"tableId": 49,
|
||||
"title": "Contract end",
|
||||
"createdBy": "admin",
|
||||
"createdByDisplayName": "admin",
|
||||
"createdAt": "2024-04-16 17:50:52",
|
||||
"lastEditBy": "admin",
|
||||
"lastEditByDisplayName": "admin",
|
||||
"lastEditAt": "2024-04-16 17:50:52",
|
||||
"type": "datetime",
|
||||
"subtype": "date",
|
||||
"mandatory": false,
|
||||
"description": "",
|
||||
"numberDefault": null,
|
||||
"numberMin": null,
|
||||
"numberMax": null,
|
||||
"numberDecimals": 0,
|
||||
"numberPrefix": "",
|
||||
"numberSuffix": "",
|
||||
"textDefault": "",
|
||||
"textAllowedPattern": "",
|
||||
"textMaxLength": -1,
|
||||
"selectionOptions": [],
|
||||
"selectionDefault": "",
|
||||
"datetimeDefault": ""
|
||||
},
|
||||
{
|
||||
"id": 164,
|
||||
"tableId": 49,
|
||||
"title": "Description",
|
||||
"createdBy": "admin",
|
||||
"createdByDisplayName": "admin",
|
||||
"createdAt": "2024-04-16 17:50:52",
|
||||
"lastEditBy": "admin",
|
||||
"lastEditByDisplayName": "admin",
|
||||
"lastEditAt": "2024-04-16 17:50:52",
|
||||
"type": "text",
|
||||
"subtype": "rich",
|
||||
"mandatory": false,
|
||||
"description": "",
|
||||
"numberDefault": null,
|
||||
"numberMin": null,
|
||||
"numberMax": null,
|
||||
"numberDecimals": 0,
|
||||
"numberPrefix": "",
|
||||
"numberSuffix": "",
|
||||
"textDefault": "",
|
||||
"textAllowedPattern": "",
|
||||
"textMaxLength": -1,
|
||||
"selectionOptions": [],
|
||||
"selectionDefault": "",
|
||||
"datetimeDefault": ""
|
||||
},
|
||||
{
|
||||
"id": 165,
|
||||
"tableId": 49,
|
||||
"title": "Contact information",
|
||||
"createdBy": "admin",
|
||||
"createdByDisplayName": "admin",
|
||||
"createdAt": "2024-04-16 17:50:52",
|
||||
"lastEditBy": "admin",
|
||||
"lastEditByDisplayName": "admin",
|
||||
"lastEditAt": "2024-04-16 17:50:52",
|
||||
"type": "text",
|
||||
"subtype": "rich",
|
||||
"mandatory": false,
|
||||
"description": "",
|
||||
"numberDefault": null,
|
||||
"numberMin": null,
|
||||
"numberMax": null,
|
||||
"numberDecimals": 0,
|
||||
"numberPrefix": "",
|
||||
"numberSuffix": "",
|
||||
"textDefault": "",
|
||||
"textAllowedPattern": "",
|
||||
"textMaxLength": -1,
|
||||
"selectionOptions": [],
|
||||
"selectionDefault": "",
|
||||
"datetimeDefault": ""
|
||||
},
|
||||
{
|
||||
"id": 166,
|
||||
"tableId": 49,
|
||||
"title": "Quality of relationship",
|
||||
"createdBy": "admin",
|
||||
"createdByDisplayName": "admin",
|
||||
"createdAt": "2024-04-16 17:50:52",
|
||||
"lastEditBy": "admin",
|
||||
"lastEditByDisplayName": "admin",
|
||||
"lastEditAt": "2024-04-16 17:50:52",
|
||||
"type": "number",
|
||||
"subtype": "progress",
|
||||
"mandatory": false,
|
||||
"description": "",
|
||||
"numberDefault": 30,
|
||||
"numberMin": null,
|
||||
"numberMax": null,
|
||||
"numberDecimals": 0,
|
||||
"numberPrefix": "",
|
||||
"numberSuffix": "",
|
||||
"textDefault": "",
|
||||
"textAllowedPattern": "",
|
||||
"textMaxLength": -1,
|
||||
"selectionOptions": [],
|
||||
"selectionDefault": "",
|
||||
"datetimeDefault": ""
|
||||
},
|
||||
{
|
||||
"id": 167,
|
||||
"tableId": 49,
|
||||
"title": "Comment",
|
||||
"createdBy": "admin",
|
||||
"createdByDisplayName": "admin",
|
||||
"createdAt": "2024-04-16 17:50:52",
|
||||
"lastEditBy": "admin",
|
||||
"lastEditByDisplayName": "admin",
|
||||
"lastEditAt": "2024-04-16 17:50:52",
|
||||
"type": "text",
|
||||
"subtype": "rich",
|
||||
"mandatory": false,
|
||||
"description": "",
|
||||
"numberDefault": null,
|
||||
"numberMin": null,
|
||||
"numberMax": null,
|
||||
"numberDecimals": 0,
|
||||
"numberPrefix": "",
|
||||
"numberSuffix": "",
|
||||
"textDefault": "",
|
||||
"textAllowedPattern": "",
|
||||
"textMaxLength": -1,
|
||||
"selectionOptions": [],
|
||||
"selectionDefault": "",
|
||||
"datetimeDefault": ""
|
||||
}
|
||||
],
|
||||
"rows": [
|
||||
{
|
||||
"id": 226,
|
||||
"tableId": 49,
|
||||
"createdBy": "admin",
|
||||
"createdAt": "2024-04-16 17:50:52",
|
||||
"lastEditBy": "admin",
|
||||
"lastEditAt": "2024-04-16 17:50:52",
|
||||
"data": [
|
||||
{
|
||||
"columnId": 159,
|
||||
"value": "Dog"
|
||||
},
|
||||
{
|
||||
"columnId": 160,
|
||||
"value": "Mr. Smith"
|
||||
},
|
||||
{
|
||||
"columnId": 161,
|
||||
"value": "Dog food every week"
|
||||
},
|
||||
{
|
||||
"columnId": 164,
|
||||
"value": "The dog is our best friend."
|
||||
},
|
||||
{
|
||||
"columnId": 165,
|
||||
"value": "Standard, SLA Level 2"
|
||||
},
|
||||
{
|
||||
"columnId": 167,
|
||||
"value": "Likes treats"
|
||||
},
|
||||
{
|
||||
"columnId": 166,
|
||||
"value": 80
|
||||
},
|
||||
{
|
||||
"columnId": 162,
|
||||
"value": "2023-01-01"
|
||||
},
|
||||
{
|
||||
"columnId": 163,
|
||||
"value": "2023-12-31"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 227,
|
||||
"tableId": 49,
|
||||
"createdBy": "admin",
|
||||
"createdAt": "2024-04-16 17:50:52",
|
||||
"lastEditBy": "admin",
|
||||
"lastEditAt": "2024-04-16 17:50:52",
|
||||
"data": [
|
||||
{
|
||||
"columnId": 159,
|
||||
"value": "Cat"
|
||||
},
|
||||
{
|
||||
"columnId": 160,
|
||||
"value": "Mr. Smith"
|
||||
},
|
||||
{
|
||||
"columnId": 161,
|
||||
"value": "Cat food every week"
|
||||
},
|
||||
{
|
||||
"columnId": 164,
|
||||
"value": "The cat is also our best friend."
|
||||
},
|
||||
{
|
||||
"columnId": 165,
|
||||
"value": "Standard, SLA Level 1"
|
||||
},
|
||||
{
|
||||
"columnId": 167,
|
||||
"value": "New customer, let's see if there is more."
|
||||
},
|
||||
{
|
||||
"columnId": 166,
|
||||
"value": 40
|
||||
},
|
||||
{
|
||||
"columnId": 162,
|
||||
"value": "2023-03-01"
|
||||
},
|
||||
{
|
||||
"columnId": 163,
|
||||
"value": "2023-09-15"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 228,
|
||||
"tableId": 49,
|
||||
"createdBy": "admin",
|
||||
"createdAt": "2024-04-16 17:50:52",
|
||||
"lastEditBy": "admin",
|
||||
"lastEditAt": "2024-04-16 17:50:52",
|
||||
"data": [
|
||||
{
|
||||
"columnId": 159,
|
||||
"value": "Horse"
|
||||
},
|
||||
{
|
||||
"columnId": 160,
|
||||
"value": "Alice"
|
||||
},
|
||||
{
|
||||
"columnId": 161,
|
||||
"value": "Hay and straw"
|
||||
},
|
||||
{
|
||||
"columnId": 164,
|
||||
"value": "Summer only"
|
||||
},
|
||||
{
|
||||
"columnId": 165,
|
||||
"value": "Special"
|
||||
},
|
||||
{
|
||||
"columnId": 167,
|
||||
"value": "Maybe we can make it fix for every year?!"
|
||||
},
|
||||
{
|
||||
"columnId": 166,
|
||||
"value": 60
|
||||
},
|
||||
{
|
||||
"columnId": 162,
|
||||
"value": "2023-06-01"
|
||||
},
|
||||
{
|
||||
"columnId": 163,
|
||||
"value": "2023-08-31"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
25
cypress/styleguide/assets/additional.css
Normal file
@ -0,0 +1,25 @@
|
||||
@import 'default.css';
|
||||
@import 'server.css';
|
||||
|
||||
div[data-preview] * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2 {
|
||||
line-height: 1.5 !important;
|
||||
}
|
||||
|
||||
div[data-preview="AppNavigationItem"],
|
||||
div[data-preview="AppNavigationCaption"] {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
div[data-preview="AppNavigationItem"] > div,
|
||||
div[data-preview="AppNavigationCaption"] > div {
|
||||
width: 300px;
|
||||
}
|
1
cypress/styleguide/assets/close.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path d="m14 12.3-1.7 1.7-4.3-4.3-4.3 4.3-1.7-1.7 4.3-4.3-4.3-4.3 1.7-1.7 4.3 4.3 4.3-4.3 1.7 1.7-4.3 4.3z"/></svg>
|
After Width: | Height: | Size: 213 B |
90
cypress/styleguide/assets/default.css
Normal file
@ -0,0 +1,90 @@
|
||||
:root {
|
||||
--color-main-background: #ffffff;
|
||||
--color-main-background-rgb: 255,255,255;
|
||||
--color-main-background-translucent: rgba(var(--color-main-background-rgb), .97);
|
||||
--color-main-background-blur: rgba(var(--color-main-background-rgb), .8);
|
||||
--filter-background-blur: blur(25px);
|
||||
--gradient-main-background: var(--color-main-background) 0%, var(--color-main-background-translucent) 85%, transparent 100%;
|
||||
--color-background-hover: #f5f5f5;
|
||||
/** Can be used e.g. to colorize selected table rows */
|
||||
--color-background-dark: #ededed;
|
||||
/** This should only be used for elements, not as a text background! Otherwise it will not work for accessibility. */
|
||||
--color-background-darker: #dbdbdb;
|
||||
--color-placeholder-light: #e6e6e6;
|
||||
--color-placeholder-dark: #cccccc;
|
||||
--color-main-text: #222222;
|
||||
--color-text-maxcontrast: #6b6b6b;
|
||||
--color-text-maxcontrast-default: #6b6b6b;
|
||||
--color-text-maxcontrast-background-blur: #595959;
|
||||
/** @deprecated use ` --color-main-text` instead */
|
||||
--color-text-light: var(--color-main-text);
|
||||
/** @deprecated use `--color-text-maxcontrast` instead */
|
||||
--color-text-lighter: var(--color-text-maxcontrast);
|
||||
--color-scrollbar: rgba(34,34,34, .15);
|
||||
--color-error: #DB0606;
|
||||
--color-error-rgb: 219,6,6;
|
||||
--color-error-hover: #df2525;
|
||||
--color-error-text: #c20505;
|
||||
--color-warning: #A37200;
|
||||
--color-warning-rgb: 163,114,0;
|
||||
--color-warning-hover: #8a6000;
|
||||
--color-warning-text: #7f5900;
|
||||
--color-success: #2d7b41;
|
||||
--color-success-rgb: 45,123,65;
|
||||
--color-success-hover: #428854;
|
||||
--color-success-text: #286c39;
|
||||
--color-info: #0071ad;
|
||||
--color-info-rgb: 0,113,173;
|
||||
--color-info-hover: #197fb5;
|
||||
--color-info-text: #006499;
|
||||
--color-favorite: #A37200;
|
||||
--color-loading-light: #cccccc;
|
||||
--color-loading-dark: #444444;
|
||||
--color-box-shadow-rgb: 77,77,77;
|
||||
--color-box-shadow: rgba(var(--color-box-shadow-rgb), 0.5);
|
||||
--color-border: #ededed;
|
||||
--color-border-dark: #dbdbdb;
|
||||
--color-border-maxcontrast: #7d7d7d;
|
||||
--font-face: system-ui, -apple-system, 'Segoe UI', Roboto, Oxygen-Sans, Cantarell, Ubuntu, 'Helvetica Neue', 'Noto Sans', 'Liberation Sans', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
||||
--default-font-size: 15px;
|
||||
--animation-quick: 100ms;
|
||||
--animation-slow: 300ms;
|
||||
--border-radius: 3px;
|
||||
--border-radius-large: 10px;
|
||||
--border-radius-rounded: 28px;
|
||||
--border-radius-pill: 100px;
|
||||
--default-clickable-area: 44px;
|
||||
--default-line-height: 24px;
|
||||
--default-grid-baseline: 4px;
|
||||
--header-height: 50px;
|
||||
--navigation-width: 300px;
|
||||
--sidebar-min-width: 300px;
|
||||
--sidebar-max-width: 500px;
|
||||
--list-min-width: 200px;
|
||||
--list-max-width: 300px;
|
||||
--header-menu-item-height: 44px;
|
||||
--header-menu-profile-item-height: 66px;
|
||||
--breakpoint-mobile: 1024px;
|
||||
--background-invert-if-dark: no;
|
||||
--background-invert-if-bright: invert(100%);
|
||||
--background-image-invert-if-bright: no;
|
||||
--primary-invert-if-bright: no;
|
||||
--primary-invert-if-dark: invert(100%);
|
||||
--color-primary: #00679e;
|
||||
--color-primary-default: #0082c9;
|
||||
--color-primary-text: #ffffff;
|
||||
--color-primary-hover: #3285b1;
|
||||
--color-primary-light: #e5eff5;
|
||||
--color-primary-light-text: #00293f;
|
||||
--color-primary-light-hover: #dbe4ea;
|
||||
--color-primary-element: #00679e;
|
||||
--color-primary-element-hover: #005a8a;
|
||||
--color-primary-element-text: #ffffff;
|
||||
--color-primary-element-text-dark: #f5f5f5;
|
||||
--color-primary-element-light: #e5eff5;
|
||||
--color-primary-element-light-hover: #dbe4ea;
|
||||
--color-primary-element-light-text: #00293f;
|
||||
--gradient-primary-background: linear-gradient(40deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
|
||||
--image-background-default: url('./img/background/kamil-porembinski-clouds.jpg');
|
||||
--color-background-plain: #00679e;
|
||||
}
|
2049
cypress/styleguide/assets/icons.css
Normal file
1
cypress/styleguide/assets/img/actions/add.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path d="M9.02 13.98h-2v-5h-5v-2h5v-5h2v5l5-.028V8.98h-5z"/></svg>
|
After Width: | Height: | Size: 164 B |
1
cypress/styleguide/assets/img/actions/address.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" version="1.1" height="16"><circle stroke-width="2" stroke="#000" cy="6" cx="8" r="4" fill="none"/><path d="m4 9h8l-4 6z"/></svg>
|
After Width: | Height: | Size: 200 B |
1
cypress/styleguide/assets/img/actions/arrow-left.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path d="m5.5 8 6 6v1l-7-7 7-7v1z"/></svg>
|
After Width: | Height: | Size: 140 B |
1
cypress/styleguide/assets/img/actions/arrow-right.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path d="m10.5 8-6-6v-1l7 7-7 7v-1z"/></svg>
|
After Width: | Height: | Size: 142 B |
1
cypress/styleguide/assets/img/actions/audio-off.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"><path d="m5 3v3.5c0 0.21626 0.0337 0.40866 0.082028 0.58984l3.9178-3.9179v-0.1719c0-2.673-4-2.6707-4 0zm5.2832 0.3027-7.9803 7.9803c-0.91785 0.91785 0.50035 2.3441 1.414 1.4141l7.9803-7.9802c0.916-0.9163-0.493-2.3349-1.414-1.4141zm-8.283 2.6973c0 1.2904 0.3648 2.371 0.9374 3.2344l1.4492-1.4492c-0.2349-0.4922-0.3867-1.0781-0.3867-1.7852 0-1.3274-2-1.326-2 0zm9.9721-0.14453-5.9723 5.9727v1.1719h-1.1718l-0.40427 0.4043c-0.12553 0.13-0.2681 0.24231-0.42381 0.334v1.2617h6v-2h-2v-1.625c2.1244-0.466 4-2.3973 4-5.375 0-0.055-0-0.0941-0.028-0.1445z"/></svg>
|
After Width: | Height: | Size: 652 B |
1
cypress/styleguide/assets/img/actions/audio.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"><path d="m6 3v3.5c0 2.6667 4 2.6667 4 0v-3.5c0-2.6661-4-2.6669-4 0zm-3 3c0 2.9759 1.8757 4.907 4 5.375v1.625h-2v2h6v-2h-2v-1.625c2.124-0.466 4-2.3973 4-5.375 0-1.3333-2-1.3333-2 0 0 4.6515-6 4.654-6 0 0-1.3277-2-1.3437-2 0z"/></svg>
|
After Width: | Height: | Size: 330 B |
1
cypress/styleguide/assets/img/actions/caret-white.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path d="M4 6l4 4 4-3.994z" fill="#fff"/></svg>
|
After Width: | Height: | Size: 145 B |
1
cypress/styleguide/assets/img/actions/caret.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path d="M4 6l4 4 4-3.994z"/></svg>
|
After Width: | Height: | Size: 133 B |
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M11.924 4.066l-4.932 4.97-2.828-2.83L2.75 7.618l4.242 4.243 6.365-6.365-1.433-1.432z" fill="#000"/></svg>
|
After Width: | Height: | Size: 212 B |
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path fill="#fff" d="m0 0v16h16v-16h-16zm11.924 4.0664l1.4336 1.4297-6.3652 6.3652-4.2422-4.2441 1.4141-1.4121 2.8281 2.8301 4.9316-4.9688z"/></svg>
|
After Width: | Height: | Size: 246 B |
1
cypress/styleguide/assets/img/actions/checkbox-mark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M11.924 4.066l-4.932 4.97-2.828-2.83L2.75 7.618l4.242 4.243 6.365-6.365-1.433-1.432z" fill="#fff"/></svg>
|
After Width: | Height: | Size: 212 B |
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M4 7v2h8V7H4z" fill="#000"/></svg>
|
After Width: | Height: | Size: 141 B |
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="m0 0v16h16v-16h-16zm4 7h8v2h-8v-2z" fill="#fff"/></svg>
|
After Width: | Height: | Size: 162 B |
1
cypress/styleguide/assets/img/actions/checkbox-mixed.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M4 7v2h8V7H4z" fill="#fff"/></svg>
|
After Width: | Height: | Size: 141 B |
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"><path d="m2.35 7.3 4 4l7.3-7.3" stroke="white" stroke-width="2" fill="none"/></svg>
|
After Width: | Height: | Size: 181 B |
BIN
cypress/styleguide/assets/img/actions/checkmark.png
Normal file
After Width: | Height: | Size: 314 B |
1
cypress/styleguide/assets/img/actions/checkmark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"><path d="m2.35 7.3 4 4l7.3-7.3" stroke="#000" stroke-width="2" fill="none"/></svg>
|
After Width: | Height: | Size: 180 B |
1
cypress/styleguide/assets/img/actions/clippy.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path d="m13 15h-11l0.0005-10h11v3.0002l1-0.0004 0.0005-5.0001c0.000058-0.5834-0.4165-1.0002-1.0005-1.0001l-3.467 0.0005c0.0008-1.183-0.9492-2.0001-2.1325-2.0001s-2.1333 0.8171-2.1333 2.0004h-3.2c-0.5834 0-1.0662 0.4166-1.0662 0.9999l-0.0005 12c-0.0000243 0.584 0.4833 1 1.0667 1l10.933-0.0005c0.584-0.001 1-0.416 1-1v-3h-1zm-8.8005-12h1.0672c0.5833 0 1.0666-0.4162 1.0666-0.9996 0-0.5833 0.4834-0.9337 1.0667-0.9337s1.0667 0.3504 1.0667 0.9337c0 0.5834 0.5333 0.9996 1.0666 0.9996h1.2667c0.517 0 1.2 0.4166 1.2 1h-9c-0.0004-0.65 0.5988-1 1.1988-1zm-1.1995 8h2v-1h-2zm7.9998-2v-2l-4 3 3.9998 3v-2l5.0002-0.00005v-2l-4.9998-0.00005zm-8 4h4v-1h-4zm6-7h-6v1h6zm-3 2h-3v1h3z"/></svg>
|
After Width: | Height: | Size: 777 B |
1
cypress/styleguide/assets/img/actions/close.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path d="m14 12.3-1.7 1.7-4.3-4.3-4.3 4.3-1.7-1.7 4.3-4.3-4.3-4.3 1.7-1.7 4.3 4.3 4.3-4.3 1.7 1.7-4.3 4.3z"/></svg>
|
After Width: | Height: | Size: 213 B |
BIN
cypress/styleguide/assets/img/actions/comment.png
Normal file
After Width: | Height: | Size: 492 B |
1
cypress/styleguide/assets/img/actions/comment.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" viewBox="0 0 32 32"><path d="M6.667 4C4.089 4 2 6.105 2 8.7v11.282c0 2.597 2.09 4.701 4.667 4.701 1.716.01 12.083.003 17.057 0 1.115.842 1.807 1.748 3.057 3.206a.93.93 0 0 0 .561.103.969.969 0 0 0 .445-.187c.302-.223.466-.603.427-.988l-.314-2.912a4.699 4.699 0 0 0 2.1-3.923V8.701C30 6.105 27.91 4 25.333 4zm3.733 8.461c1.03 0 1.867.842 1.867 1.88 0 1.676-2.01 2.514-3.187 1.33-1.176-1.184-.343-3.21 1.32-3.21zm5.6 0c1.03 0 1.867.842 1.867 1.88 0 1.676-2.01 2.514-3.187 1.33-1.176-1.184-.343-3.21 1.32-3.21zm5.6 0c1.03 0 1.867.842 1.867 1.88 0 1.676-2.01 2.514-3.187 1.33-1.176-1.184-.343-3.21 1.32-3.21z"/></svg>
|
After Width: | Height: | Size: 676 B |
1
cypress/styleguide/assets/img/actions/confirm-fade.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" version="1.1" height="16"><path opacity=".5" d="m8.5 0.5c-0.8974 0-1.3404 1.0909-0.6973 1.7168l4.7837 4.7832h-11.573c-1.3523-0.019125-1.3523 2.0191 0 2h11.572l-4.7832 4.7832c-0.98163 0.94251 0.47155 2.3957 1.4141 1.4141l6.4911-6.49c0.387-0.3878 0.391-1.0228 0-1.414l-6.4906-6.4903c-0.1883-0.1935-0.4468-0.30268-0.7168-0.3027z"/></svg>
|
After Width: | Height: | Size: 406 B |
1
cypress/styleguide/assets/img/actions/confirm-white.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" version="1.1" height="16"><path fill="#fff" d="m8.5 0.5c-0.8974 0-1.3404 1.0909-0.6973 1.7168l4.7837 4.7832h-11.573c-1.3523-0.019125-1.3523 2.0191 0 2h11.572l-4.7832 4.7832c-0.98163 0.94251 0.47155 2.3957 1.4141 1.4141l6.4911-6.49c0.387-0.3878 0.391-1.0228 0-1.414l-6.4906-6.4903c-0.1883-0.1935-0.4468-0.30268-0.7168-0.3027z"/></svg>
|
After Width: | Height: | Size: 405 B |
1
cypress/styleguide/assets/img/actions/confirm.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" version="1.1" height="16"><path d="m8.5 0.5c-0.8974 0-1.3404 1.0909-0.6973 1.7168l4.7837 4.7832h-11.573c-1.3523-0.019125-1.3523 2.0191 0 2h11.572l-4.7832 4.7832c-0.98163 0.94251 0.47155 2.3957 1.4141 1.4141l6.4911-6.49c0.387-0.3878 0.391-1.0228 0-1.414l-6.4906-6.4903c-0.1883-0.1935-0.4468-0.30268-0.7168-0.3027z"/></svg>
|
After Width: | Height: | Size: 393 B |
1
cypress/styleguide/assets/img/actions/delete.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M6.5 1L6 2H3c-.554 0-1 .446-1 1v1h12V3c0-.554-.446-1-1-1h-3l-.5-1zM3 5l.875 9c.06.55.573 1 1.125 1h6c.552 0 1.064-.45 1.125-1L13 5z"/></svg>
|
After Width: | Height: | Size: 247 B |
1
cypress/styleguide/assets/img/actions/details.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m7.75 1a1.75 1.75 0 0 0-1.75 1.75 1.75 1.75 0 0 0 1.75 1.75 1.75 1.75 0 0 0 1.75-1.75 1.75 1.75 0 0 0-1.75-1.75zm-2.75 5c-0.554 0-1 0.446-1 1s0.446 1 1 1h2v5h-2c-0.554 0-1 0.446-1 1s0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-2v-6c0-0.554-0.446-1-1-1h-3z"/></svg>
|
After Width: | Height: | Size: 374 B |
1
cypress/styleguide/assets/img/actions/disabled-user.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m8 1c-1.75 0-3 1.4308-3 2.8008 0 1.4 0.10078 2.4 0.80078 3.5 0.2 0.286 0.49922 0.34961 0.69922 0.59961 0.0039248 0.014536 0.0058968 0.028465 0.0097656 0.042969l4.4551-4.4551c-0.17471-1.4311-1.5009-2.4883-2.9648-2.4883zm1.541 8.4551-5.3223 5.3223c1.1728 0.19277 2.6019 0.22266 3.7812 0.22266 2.5 0 6.163-0.099219 6-1.6992-0.215-2-0.23-1.7108-1-2.3008-1.0575-0.62876-2.3392-1.1226-3.459-1.5449zm-5.6484 1.1055c-0.29809 0.14662-0.60757 0.2854-0.89258 0.43945-0.66764 0.47127-0.77292 0.43452-0.89062 1.3438l1.7832-1.7832z"/><rect transform="rotate(-45)" x="-8.9968" y="11.118" width="16.999" height="1.4166" style="paint-order:normal"/></svg>
|
After Width: | Height: | Size: 745 B |
1
cypress/styleguide/assets/img/actions/disabled-users.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m9 1c-1.746 0-3 1.4308-3 2.8008 0 1.4 0.10078 2.4 0.80078 3.5 0.066421 0.085991 0.13627 0.14858 0.20703 0.20508l4.7617-4.7617c-0.46305-1.0371-1.5733-1.7441-2.7695-1.7441zm-4.9805 4c-0.87 0-1.5 0.72039-1.5 1.4004h-0.019531c0 0.7 0.050391 1.2 0.40039 1.75 0.1 0.15 0.24161 0.17383 0.34961 0.29883 0.0674 0.25 0.12178 0.5 0.050781 0.75-0.64 0.223-1.2448 0.50078-1.8008 0.80078-0.42 0.3-0.233 0.18239-0.5 1.1504-0.097631 0.39367 0.76198 0.61493 1.6309 0.73242l2.5137-2.5137c-0.14238-0.05672-0.28961-0.11729-0.42383-0.16992-0.07-0.28-0.021172-0.487 0.048828-0.75 0.12-0.125 0.23133-0.17883 0.36133-0.29883 0.37-0.45 0.38867-1.21 0.38867-1.75 0-0.8-0.72-1.4004-1.5-1.4004zm6.3359 3.5801-5.8516 5.8516c1.4351 0.4011 3.5062 0.56836 4.4961 0.56836 2.43 0 6.3135-0.45522 5.9805-1.6992-0.52-1.94-0.20847-1.7108-0.98047-2.3008-1.09-0.654-2.4516-1.1666-3.5996-1.5996-0.08115-0.30134-0.079548-0.56194-0.044922-0.82031z"/><rect transform="rotate(-45)" x="-8.9557" y="11.077" width="18" height="1.5" style="paint-order:normal"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
BIN
cypress/styleguide/assets/img/actions/download.png
Normal file
After Width: | Height: | Size: 170 B |
1
cypress/styleguide/assets/img/actions/download.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M6 1h4v7h5l-7 7-7-7h5z"/></svg>
|
After Width: | Height: | Size: 138 B |
1
cypress/styleguide/assets/img/actions/edit.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" version="1.1" height="16"><path d="m2.5 1c-0.28 0-0.5 0.22-0.5 0.5v13c0 0.28 0.22 0.5 0.5 0.5h11c0.28 0 0.5-0.22 0.5-0.5v-10.5l-3-3h-8.5zm1.5 2h6v1h-6v-1zm0 3h5v1h-5v-1zm0 3h8v1h-8v-1zm0 3h4v1h-4v-1z"/></svg>
|
After Width: | Height: | Size: 280 B |
1
cypress/styleguide/assets/img/actions/error-white.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M5.516 2L2 5.516v4.968L5.516 14h4.968L14 10.484V5.516L10.484 2H5.516zM7 4h2v5H7V4zm0 6h2v2H7v-2z" fill="#fff"/></svg>
|
After Width: | Height: | Size: 224 B |
1
cypress/styleguide/assets/img/actions/error.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M5.516 2L2 5.516v4.968L5.516 14h4.968L14 10.484V5.516L10.484 2H5.516zM7 4h2v5H7V4zm0 6h2v2H7v-2z"/></svg>
|
After Width: | Height: | Size: 212 B |
1
cypress/styleguide/assets/img/actions/external.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M3.2 2C2.53 2 2 2.54 2 3.2v9.6c0 .67.53 1.2 1.2 1.2h9.6c.67 0 1.2-.53 1.2-1.2V8.98l-1.2-1.2v5.02H3.2V3.2h5.02L7.08 2.06 7.02 2H3.2z"/><path d="M8.14 1l2.29 2.29L7 6.7 9.29 9l3.42-3.43L15 7.86V1z"/></svg>
|
After Width: | Height: | Size: 275 B |
1
cypress/styleguide/assets/img/actions/filter.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M1.19 2.4l5.05 6.48v5.24c0 .49.4.88.88.88h1.76c.49 0 .88-.4.88-.88V8.88l5.05-6.47a.87.87 0 00-.7-1.41H1.89a.87.87 0 00-.7 1.4z"/></svg>
|
After Width: | Height: | Size: 207 B |
1
cypress/styleguide/assets/img/actions/fullscreen.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="m8 1c-0.554 0-1 0.446-1 1s0.446 1 1 1h5v5c0 0.554 0.446 1 1 1s1-0.446 1-1v-6c0-0.554-0.446-1-1-1h-6zm-6 6c-0.554 0-1 0.446-1 1v6c0 0.554 0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-5v-5c0-0.554-0.446-1-1-1z"/></svg>
|
After Width: | Height: | Size: 326 B |
1
cypress/styleguide/assets/img/actions/group.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 16" height="16" width="16" version="1.1"><path d="m10 1c-1.75 0-3 1.43-3 2.8 0 1.4 0.1 2.4 0.8 3.5 0.2 0.29 0.5 0.35 0.7 0.6 0.135 0.5 0.24 1 0.1 1.5-0.28 0.1-0.525 0.22-0.8 0.33-0.085-0.15-0.23-0.2-0.47-0.4-0.73-0.44-1.56-0.75-2.33-1.04-0.1-0.37-0.1-0.65 0-1 0.156-0.166 0.37-0.27 0.5-0.43 0.46-0.6 0.5-1.654 0.5-2.37 0-1.06-0.954-1.9-2-1.9-1.17 0-2 1-2 1.9 0 0.93 0.034 1.64 0.5 2.37 0.13 0.2 0.367 0.26 0.5 0.43 0.1 0.33 0.1 0.654 0 1-0.85 0.3-1.6 0.64-2.34 1.04-0.57 0.4-0.52 0.205-0.66 1.53-0.11 1.06 2.335 1.13 4 1.13 0.06 0 0.11 0 0.17 0-0.054 0.274-0.1 0.63-0.17 1.3-0.16 1.59 3.5 1.7 6 1.7s6.16-0.1 6-1.7c-0.215-2-0.23-1.71-1-2.3-1.1-0.654-2.45-1.17-3.6-1.6-0.15-0.56-0.04-0.97 0.1-1.5 0.235-0.25 0.5-0.36 0.7-0.6 0.7-0.885 0.8-2.425 0.8-3.5 0-1.6-1.43-2.8-3-2.8z"/></svg>
|
After Width: | Height: | Size: 838 B |
BIN
cypress/styleguide/assets/img/actions/history.png
Normal file
After Width: | Height: | Size: 291 B |
1
cypress/styleguide/assets/img/actions/history.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z"/></svg>
|
After Width: | Height: | Size: 240 B |
1
cypress/styleguide/assets/img/actions/info-white.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m7.75 1a1.75 1.75 0 0 0-1.75 1.75 1.75 1.75 0 0 0 1.75 1.75 1.75 1.75 0 0 0 1.75-1.75 1.75 1.75 0 0 0-1.75-1.75zm-2.75 5c-0.554 0-1 0.446-1 1s0.446 1 1 1h2v5h-2c-0.554 0-1 0.446-1 1s0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-2v-6c0-0.554-0.446-1-1-1h-3z" fill="#fff"/></svg>
|
After Width: | Height: | Size: 386 B |
1
cypress/styleguide/assets/img/actions/info.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m7.75 1a1.75 1.75 0 0 0-1.75 1.75 1.75 1.75 0 0 0 1.75 1.75 1.75 1.75 0 0 0 1.75-1.75 1.75 1.75 0 0 0-1.75-1.75zm-2.75 5c-0.554 0-1 0.446-1 1s0.446 1 1 1h2v5h-2c-0.554 0-1 0.446-1 1s0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-2v-6c0-0.554-0.446-1-1-1h-3z"/></svg>
|
After Width: | Height: | Size: 374 B |
1
cypress/styleguide/assets/img/actions/logout.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><g stroke-width="2" stroke="#000" stroke-linecap="round" fill="none"><path d="m10.75 3.9862a5.5 5.5 0 0 1 2.563 6.1868 5.5 5.5 0 0 1 -5.3131 4.077 5.5 5.5 0 0 1 -5.3127 -4.077 5.5 5.5 0 0 1 2.5627 -6.1867"/><path d="m8 1.7637v5.972"/></g></svg>
|
After Width: | Height: | Size: 342 B |
1
cypress/styleguide/assets/img/actions/mail.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="16" width="16" viewBox="0 0 16 16"><path d="m0.89 3c-0.4924 0-0.89 0.4-0.89 0.89v8.2202c0 0.493 0.4 0.89 0.89 0.89h14.22c0.492 0 0.89-0.4 0.89-0.89v-8.2202c0-0.4924-0.4-0.89-0.89-0.89zm0.75 1.0278 6.0827 6.0817h0.52773l6.1102-6.0817 0.611 0.6109-3.6384 3.6934 2.75 2.8047-0.61102 0.61092-2.8052-2.8047-2.0275 2.0549h-1.2776l-2.0271-2.0553-2.8053 2.8323-0.6111-0.639 2.7774-2.8046-3.666-3.6932z"/></svg>
|
After Width: | Height: | Size: 465 B |
1
cypress/styleguide/assets/img/actions/menu-sidebar.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path d="m2 2c-0.554 0-1 0.446-1 1s0.446 1 1 1h12c0.554 0 1-0.446 1-1s-0.446-1-1-1h-12zm9.717 4.0059c-1.247 0-2.1428 1.0199-2.1428 1.998 0 0.9995 0.0726 1.7127 0.5718 2.4981 0.16 0.207 0.347 0.251 0.5 0.43 0.097 0.357 0.171 0.713 0.071 1.07-0.311 0.109-0.607 0.237-0.9065 0.357-0.364-0.195-0.7863-0.357-1.1503-0.5-0.05-0.2-0.0129-0.347 0.0371-0.535 0.0856-0.089 0.163-0.129 0.2558-0.215 0.2642-0.321 0.2793-0.864 0.2793-1.2496 0-0.5712-0.5135-0.9981-1.0703-0.9981-0.6211 0-1.0723 0.5126-1.0723 0.9981h-0.0136c0 0.4996 0.0353 0.8576 0.2851 1.2496 0.0714 0.107 0.1729 0.126 0.25 0.215 0.0481 0.179 0.0859 0.357 0.0352 0.535-0.4569 0.16-0.8863 0.357-1.2832 0.571-0.2999 0.214-0.1668 0.131-0.3574 0.822-0.0886 0.357 0.928 0.521 1.6562 0.578-0.0357 0.196-0.0857 0.457-0.2285 0.957-0.2285 0.893 3.1074 1.213 4.2834 1.213 1.735 0 4.507-0.325 4.269-1.213-0.371-1.385-0.15-1.221-0.701-1.642-0.778-0.467-1.749-0.834-2.568-1.143-0.107-0.398-0.03-0.692 0.07-1.07 0.168-0.179 0.357-0.259 0.514-0.43 0.492-0.6312 0.556-1.7299 0.556-2.4981 0-1.1323-1.019-1.998-2.14-1.998zm-9.717 0.9941c-0.554 0-1 0.446-1 1s0.446 1 1 1h4.2852c0.0891-0.1855 0.2-0.3648 0.3515-0.5195 0.3721-0.3801 0.9171-0.5988 1.4883-0.6192h0.0098 0.0097c0.1729 0.017 0.3042 0.0597 0.4297 0.1426 0-0.3488 0.0747-0.6853 0.1953-1.0039h-6.7695zm0 5c-0.554 0-1 0.446-1 1s0.446 1 1 1h3.25c-0.0375-0.049-0.0777-0.09-0.1113-0.152-0.1221-0.228-0.1706-0.568-0.1035-0.838l0.0019-0.012 0.0039-0.012c0.0822-0.298 0.0556-0.322 0.1445-0.615 0.0313-0.103 0.1114-0.245 0.1993-0.371h-3.3848z"/></svg>
|
After Width: | Height: | Size: 1.6 KiB |
1
cypress/styleguide/assets/img/actions/menu.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M2 2v2h12V2zm0 5v2h12V7zm0 5v2h12v-2z"/></svg>
|
After Width: | Height: | Size: 153 B |
1
cypress/styleguide/assets/img/actions/more-white.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M3 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm5 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm5 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4z" fill="#fff"/></svg>
|
After Width: | Height: | Size: 227 B |
1
cypress/styleguide/assets/img/actions/more.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M2.5 6.25a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5zm5.5 0a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5zm5.5 0a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 1 1 0-3.5z"/></svg>
|
After Width: | Height: | Size: 237 B |
1
cypress/styleguide/assets/img/actions/password-white.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path fill="#fff" d="m8 1c-2.319 0-3.967 1.8644-4 4v2.5h-1.5v7.5h11v-7.5h-1.5v-2.5c0-2.27-1.8-3.9735-4-4zm0 2c1.25 0 2 0.963 2 2v2.5h-4v-2.5c0-1.174 0.747-2 2-2z"/></svg>
|
After Width: | Height: | Size: 268 B |
BIN
cypress/styleguide/assets/img/actions/password.png
Normal file
After Width: | Height: | Size: 330 B |
1
cypress/styleguide/assets/img/actions/password.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path d="m8 1c-2.319 0-3.967 1.8644-4 4v2.5h-1.5v7.5h11v-7.5h-1.5v-2.5c0-2.27-1.8-3.9735-4-4zm0 2c1.25 0 2 0.963 2 2v2.5h-4v-2.5c0-1.174 0.747-2 2-2z"/></svg>
|
After Width: | Height: | Size: 256 B |
1
cypress/styleguide/assets/img/actions/pause.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path d="M3 3v10h4V3H3zm6 0v10h4V3H9z"/></svg>
|
After Width: | Height: | Size: 144 B |
1
cypress/styleguide/assets/img/actions/play-add.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path d="M2 1l11 6-11 6zM11 9v2H9v2h2v2h2v-2h2v-2h-2V9z"/></svg>
|
After Width: | Height: | Size: 162 B |
1
cypress/styleguide/assets/img/actions/play-next.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path d="M7 2l7 6-7 6z"/><path d="M2 2l7 6-7 6z"/></svg>
|
After Width: | Height: | Size: 154 B |
1
cypress/styleguide/assets/img/actions/play-previous.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path d="M9 2L2 8l7 6z"/><path d="M14 2L7 8l7 6z"/></svg>
|
After Width: | Height: | Size: 155 B |
1
cypress/styleguide/assets/img/actions/play.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path d="M2 2l12 6-12 6z"/></svg>
|
After Width: | Height: | Size: 131 B |
1
cypress/styleguide/assets/img/actions/projects.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="16" height="16" version="1.1" viewBox="0 0 4.2333 4.2333" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -292.77)"><g transform="translate(0 -.52917)"><path transform="matrix(.26458 0 0 .26458 0 293.3)" d="m5.1602 1.9746v0.36914 1.8359h-4.5937v0.375 7.3086h2.8047v2.3262h10.291v-4.5371h1.7891v-7.6777h-10.291zm0.75195 0.74609h8.7871v6.1855h-1.0371v-2.3945h-2.8047v-2.332h-4.9453v-1.459zm-4.5938 2.2109h8.793v1.5801h-6.7402v0.36914 4.2363h-2.0527v-6.1855zm2.8066 2.3262h8.793v6.1855h-8.793v-6.1855z" fill="#000000" color-rendering="auto" dominant-baseline="auto" image-rendering="auto" shape-rendering="auto" solid-fill="#000000" stroke="#000" stroke-linecap="round" stroke-width=".4" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;paint-order:markers fill stroke;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/></g></g></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
cypress/styleguide/assets/img/actions/public-white.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" height="16" width="16"><path fill="#fff" d="m9.2363 2.166-3.1816 3.1836c-0.7071 0.7072-1.0378 1.6182-0.9883 2.457 0.05 0.8389 0.4333 1.5841 0.9883 2.1387l1.4121-1.416c-0.5672-0.5672-0.5444-1.2192 0.002-1.7656l3.1812-3.1817c0.52536-0.52536 1.2507-0.52318 1.772-0.002 0.48245 0.5556 0.52732 1.2382-0.004 1.7695l-0.82 0.8203c0.555 0.785 0.645 1.3663 0.593 2.2344l1.641-1.6406c1.2374-1.2374 1.2371-3.3645 0-4.6016-1.236-1.2361-3.342-1.2113-4.5957 0.004zm0.7071 3.8848-1.4141 1.418c0 0 0.003-00 0.004 0 0.55 0.55 0.50736 1.2582-0.004 1.7695l-3.1816 3.1817c-0.696 0.59192-1.2985 0.47105-1.7696 0-0.62636-0.62636-0.5-1.2681 0-1.768l0.85-0.8473c-0.556-0.7835-0.6484-1.365-0.5976-2.2324l-1.666 1.666c-1.2393 1.2393-1.2357 3.36 0 4.5957 1.2353 1.2353 3.362 1.2356 4.5976 0l3.1817-3.182c0.7086-0.7083 1.0396-1.6184 0.9906-2.4586-0.048-0.8401-0.432-1.5864-0.9887-2.1407z"/></svg>
|
After Width: | Height: | Size: 942 B |
1
cypress/styleguide/assets/img/actions/public.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" height="16" width="16"><path d="m9.2363 2.166-3.1816 3.1836c-0.7071 0.7072-1.0378 1.6182-0.9883 2.457 0.05 0.8389 0.4333 1.5841 0.9883 2.1387l1.4121-1.416c-0.5672-0.5672-0.5444-1.2192 0.002-1.7656l3.1812-3.1817c0.52536-0.52536 1.2507-0.52318 1.772-0.002 0.48245 0.5556 0.52732 1.2382-0.004 1.7695l-0.82 0.8203c0.555 0.785 0.645 1.3663 0.593 2.2344l1.641-1.6406c1.2374-1.2374 1.2371-3.3645 0-4.6016-1.236-1.2361-3.342-1.2113-4.5957 0.004zm0.7071 3.8848-1.4141 1.418c0 0 0.003-00 0.004 0 0.55 0.55 0.50736 1.2582-0.004 1.7695l-3.1816 3.1817c-0.696 0.59192-1.2985 0.47105-1.7696 0-0.62636-0.62636-0.5-1.2681 0-1.768l0.85-0.8473c-0.556-0.7835-0.6484-1.365-0.5976-2.2324l-1.666 1.666c-1.2393 1.2393-1.2357 3.36 0 4.5957 1.2353 1.2353 3.362 1.2356 4.5976 0l3.1817-3.182c0.7086-0.7083 1.0396-1.6184 0.9906-2.4586-0.048-0.8401-0.432-1.5864-0.9887-2.1407z"/></svg>
|
After Width: | Height: | Size: 930 B |
1
cypress/styleguide/assets/img/actions/quota.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" viewBox="0 0 16 16" width="16" version="1.1"><path d="m8 1c-3.86 0-7 3.15-7 7s3.15 7 7 7c3.86 0 7-3.15 7-7 0-3.86-3.15-7-7-7zm0 1.75c2.91 0 5.25 2.34 5.25 5.25 0 1.42-0.56 2.7-1.47 3.644l-3.78-3.644z"/></svg>
|
After Width: | Height: | Size: 261 B |
1
cypress/styleguide/assets/img/actions/rename.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" height="16" width="16"><path d="M12.594 1.344C12.062 1.314 11.5 1.5 11 2l3 3c1.5-1.5.188-3.563-1.406-3.656zM10 3l-7 7-2 5 5-2 7-7-3-3zm-6.5 7.5l2 2L3 14l-1-1 1.5-2.5z"/></svg>
|
After Width: | Height: | Size: 250 B |
1
cypress/styleguide/assets/img/actions/screen-off.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"><path d="m12.986 1.0117v0.002c-0.255 0-0.511 0.0952-0.707 0.291l-9.986 9.9843c-0.3918 0.392-0.3918 1.024 0 1.416 0.3917 0.392 1.0242 0.392 1.416 0l9.984-9.9862c0.392-0.392 0.392-1.0223 0-1.4141-0.196-0.1958-0.451-0.293-0.707-0.293zm-10.986 0.9883c-0.554 0-1 0.446-1 1v8c0 0.152 0.0393 0.293 0.0996 0.422 0.0909-0.308 0.2469-0.598 0.4863-0.838v-0.002l1.4141-1.414v-5.168h5.1699l2.0001-2h-8.17zm12.893 0.5664c-0.09 0.3155-0.248 0.6146-0.493 0.8594l-1.4 1.4004v5.1738h-5.1719l-2 2h1.1719v1h-2v2h6v-2h-2v-1h5c0.554 0 1-0.446 1-1v-8c0-0.1573-0.043-0.3014-0.107-0.4336z"/></svg>
|
After Width: | Height: | Size: 670 B |
1
cypress/styleguide/assets/img/actions/screen.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"><path d="m2 2c-0.554 0-1 0.446-1 1v8c0 0.554 0.446 1 1 1h5v1h-2v2h6v-2h-2v-1h5c0.554 0 1-0.446 1-1v-8c0-0.554-0.446-1-1-1zm1 2h10v6h-10z"/></svg>
|
After Width: | Height: | Size: 243 B |
1
cypress/styleguide/assets/img/actions/search.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" height="16" width="16"><g stroke="#000" stroke-width="2" fill="none"><ellipse rx="4" ry="4" cy="6" cx="6"/><path d="m14.3 14.25-5.65-5.65"/></g></svg>
|
After Width: | Height: | Size: 225 B |
1
cypress/styleguide/assets/img/actions/settings-dark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" viewBox="0 0 16 16" width="16" version="1.1"><path d="m6.94 0.5c-0.24 0-0.44 0.2-0.44 0.44v1.26c-0.5 0.14-1.05 0.35-1.53 0.65l-0.91-0.91c-0.16-0.18-0.46-0.19-0.62 0l-1.5 1.5c-0.18 0.17-0.18 0.46 0 0.62l0.91 0.91c-0.284 0.48-0.5 1-0.65 1.53h-1.26c-0.24 0-0.44 0.2-0.44 0.44v2.12c0 0.25 0.19 0.44 0.44 0.44h1.26c0.14 0.54 0.36 1.05 0.65 1.53l-0.91 0.91c-0.18 0.17-0.18 0.45 0 0.62l1.5 1.5c0.18 0.18 0.46 0.18 0.62 0l0.91-0.91c0.48 0.285 1 0.5 1.53 0.65v1.26c0 0.25 0.2 0.44 0.44 0.44h2.12c0.24 0 0.45-0.2 0.44-0.44v-1.26c0.54-0.14 1.05-0.36 1.53-0.65l0.91 0.91c0.17 0.18 0.45 0.18 0.62 0l1.5-1.5c0.18-0.17 0.18-0.45 0-0.62l-0.91-0.91c0.29-0.48 0.5-1 0.65-1.53h1.26c0.24 0 0.45-0.2 0.44-0.44v-2.12c0-0.24-0.2-0.44-0.44-0.44h-1.26c-0.14-0.54-0.36-1.05-0.65-1.53l0.91-0.91c0.18-0.17 0.18-0.45 0-0.62l-1.5-1.5c-0.17-0.18-0.45-0.18-0.62 0l-0.91 0.91c-0.48-0.29-1-0.5-1.53-0.65v-1.26c0-0.24-0.2-0.44-0.44-0.44h-2.12zm1.06 4a3.5 3.5 0 0 1 3.5 3.5 3.5 3.5 0 0 1 -3.5 3.5 3.5 3.5 0 0 1 -3.5 -3.5 3.5 3.5 0 0 1 3.5 -3.5z"/></svg>
|
After Width: | Height: | Size: 1.0 KiB |
1
cypress/styleguide/assets/img/actions/settings.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" viewBox="0 0 16 16" width="16" version="1.1"><path opacity=".5" d="m6.94 0.5c-0.24 0-0.44 0.2-0.44 0.44v1.26c-0.5 0.14-1.05 0.35-1.53 0.65l-0.91-0.91c-0.16-0.18-0.46-0.19-0.62 0l-1.5 1.5c-0.18 0.17-0.18 0.46 0 0.62l0.91 0.91c-0.284 0.48-0.5 1-0.65 1.53h-1.26c-0.24 0-0.44 0.2-0.44 0.44v2.12c0 0.25 0.19 0.44 0.44 0.44h1.26c0.14 0.54 0.36 1.05 0.65 1.53l-0.91 0.91c-0.18 0.17-0.18 0.45 0 0.62l1.5 1.5c0.18 0.18 0.46 0.18 0.62 0l0.91-0.91c0.48 0.285 1 0.5 1.53 0.65v1.26c0 0.25 0.2 0.44 0.44 0.44h2.12c0.24 0 0.45-0.2 0.44-0.44v-1.26c0.54-0.14 1.05-0.36 1.53-0.65l0.91 0.91c0.17 0.18 0.45 0.18 0.62 0l1.5-1.5c0.18-0.17 0.18-0.45 0-0.62l-0.91-0.91c0.29-0.48 0.5-1 0.65-1.53h1.26c0.24 0 0.45-0.2 0.44-0.44v-2.12c0-0.24-0.2-0.44-0.44-0.44h-1.26c-0.14-0.54-0.36-1.05-0.65-1.53l0.91-0.91c0.18-0.17 0.18-0.45 0-0.62l-1.5-1.5c-0.17-0.18-0.45-0.18-0.62 0l-0.91 0.91c-0.48-0.29-1-0.5-1.53-0.65v-1.26c0-0.24-0.2-0.44-0.44-0.44h-2.12zm1.06 4a3.5 3.5 0 0 1 3.5 3.5 3.5 3.5 0 0 1 -3.5 3.5 3.5 3.5 0 0 1 -3.5 -3.5 3.5 3.5 0 0 1 3.5 -3.5z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
BIN
cypress/styleguide/assets/img/actions/share.png
Normal file
After Width: | Height: | Size: 395 B |
1
cypress/styleguide/assets/img/actions/share.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"><circle cx="3.5" cy="8" r="2.5"/><circle cy="12.5" cx="12.5" r="2.5"/><circle cx="12.5" cy="3.5" r="2.5"/><path d="m3.5 8 9 4.5m-9-4.5 9-4.5" stroke="#000" stroke-width="2" fill="none"/></svg>
|
After Width: | Height: | Size: 290 B |
1
cypress/styleguide/assets/img/actions/shared.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"><circle cx="3.5" cy="8" r="2.5"/><circle cy="12.5" cx="12.5" r="2.5"/><circle cx="12.5" cy="3.5" r="2.5"/><path d="m3.5 8 9 4.5m-9-4.5 9-4.5" stroke="#000" stroke-width="2" fill="none"/></svg>
|
After Width: | Height: | Size: 290 B |
1
cypress/styleguide/assets/img/actions/sound-off.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M1 6v4h3l3 3h1V3H7L4 6z"/></svg>
|
After Width: | Height: | Size: 139 B |
1
cypress/styleguide/assets/img/actions/sound.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M1 6v4h3l3 3h1V3H7L4 6zM13.25 3l-.78.625C13.433 4.825 14 6.34 14 8s-.566 3.175-1.53 4.375l.78.625C14.348 11.63 15 9.892 15 8s-.652-3.63-1.75-5zm-1.563 1.25l-.812.656C11.563 5.763 12 6.816 12 8s-.437 2.237-1.125 3.094l.813.656C12.51 10.723 13 9.42 13 8s-.49-2.723-1.313-3.75zM10.126 5.5l-.78.625C9.754 6.638 10 7.29 10 8s-.245 1.36-.656 1.875l.78.625a4.008 4.008 0 0 0 0-5z"/></svg>
|
After Width: | Height: | Size: 488 B |
1
cypress/styleguide/assets/img/actions/star-dark.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path d="m8 0.5 2.2 5.3 5.8 0.45-4.5 3.75 1.5 5.5-5-3.1-5 3.1 1.5-5.5-4.5-3.75 5.8-0.45z" fill="#000"/></svg>
|
After Width: | Height: | Size: 207 B |
BIN
cypress/styleguide/assets/img/actions/star.png
Normal file
After Width: | Height: | Size: 632 B |
1
cypress/styleguide/assets/img/actions/star.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path opacity=".5" d="m8 0.5 2.2 5.3 5.8 0.45-4.5 3.75 1.5 5.5-5-3.1-5 3.1 1.5-5.5-4.5-3.75 5.8-0.45z"/></svg>
|
After Width: | Height: | Size: 208 B |
BIN
cypress/styleguide/assets/img/actions/starred.png
Normal file
After Width: | Height: | Size: 459 B |
1
cypress/styleguide/assets/img/actions/starred.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path fill="#FC0" d="m8 0.5 2.2 5.3 5.8 0.45-4.5 3.75 1.5 5.5-5-3.1-5 3.1 1.5-5.5-4.5-3.75 5.8-0.45z"/></svg>
|
After Width: | Height: | Size: 207 B |
BIN
cypress/styleguide/assets/img/actions/tag.png
Normal file
After Width: | Height: | Size: 380 B |
1
cypress/styleguide/assets/img/actions/tag.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M1.55 1c-.15 0-.29.06-.39.16-.1.1-.16.24-.16.4v5.18c0 .16.07.3.17.4l7.68 7.68a.6.6 0 00.86 0l5.11-5.1a.6.6 0 000-.87L7.14 1.18a.57.57 0 00-.4-.18H1.55zM4.5 3A1.5 1.5 0 016 4.5 1.5 1.5 0 014.5 6 1.5 1.5 0 013 4.5 1.5 1.5 0 014.5 3z"/></svg>
|
After Width: | Height: | Size: 311 B |
3
cypress/styleguide/assets/img/actions/timezone.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg enable-background="new 0 0 15 15" version="1.1" viewBox="0 0 15 15" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" width="16" height="16">
|
||||
<path d="m14.982 7c-0.246-3.744-3.238-6.737-6.982-6.983v-0.017h-1v0.017c-3.744 0.246-6.737 3.239-6.983 6.983h-0.017v1h0.017c0.246 3.744 3.239 6.736 6.983 6.982v0.018h1v-0.018c3.744-0.246 6.736-3.238 6.982-6.982h0.018v-1h-0.018zm-10.287-5.365c-0.483 0.642-0.884 1.447-1.176 2.365h-1.498c0.652-1.017 1.578-1.84 2.674-2.365zm-3.197 3.365h1.758c-0.134 0.632-0.219 1.303-0.246 2h-1.991c0.053-0.704 0.219-1.377 0.479-2zm-0.479 3h1.991c0.027 0.697 0.112 1.368 0.246 2h-1.758c-0.26-0.623-0.426-1.296-0.479-2zm1.002 3h1.497c0.292 0.918 0.693 1.723 1.177 2.365-1.096-0.525-2.022-1.347-2.674-2.365zm4.979 2.936c-1.028-0.275-1.913-1.379-2.45-2.936h2.45v2.936zm0-3.936h-2.731c-0.141-0.623-0.23-1.296-0.259-2h2.99v2zm0-3h-2.99c0.029-0.704 0.118-1.377 0.259-2h2.731v2zm0-3h-2.45c0.537-1.557 1.422-2.661 2.45-2.935v2.935zm5.979 0h-1.496c-0.293-0.918-0.693-1.723-1.178-2.365 1.095 0.525 2.022 1.348 2.674 2.365zm-4.979-2.935c1.027 0.274 1.913 1.378 2.45 2.935h-2.45v-2.935zm0 3.935h2.73c0.142 0.623 0.229 1.296 0.26 2h-2.99v-2zm0 3h2.99c-0.029 0.704-0.118 1.377-0.26 2h-2.73v-2zm0 5.936v-2.936h2.45c-0.537 1.557-1.423 2.661-2.45 2.936zm2.305-0.571c0.483-0.643 0.885-1.447 1.178-2.365h1.496c-0.652 1.018-1.579 1.84-2.674 2.365zm3.197-3.365h-1.758c0.134-0.632 0.219-1.303 0.246-2h1.99c-0.052 0.704-0.218 1.377-0.478 2zm-1.512-3c-0.027-0.697-0.112-1.368-0.246-2h1.758c0.26 0.623 0.426 1.296 0.479 2h-1.991z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 16" height="16" width="16" version="1.1"><path d="m8 1c-3.85 0-7 3.15-7 7s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm0 2v10a5 5 0 0 1 -5 -5 5 5 0 0 1 5 -5z"/></svg>
|
After Width: | Height: | Size: 212 B |
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 16" height="16" width="16" version="1.1"><path color="#000" d="m1 1v4h4v-4zm5 1v2h8v-2zm-5 4v4h4v-4zm5 1v2h8v-2zm-5 4v4h4v-4zm5 1v2h8v-2z"/></svg>
|
After Width: | Height: | Size: 203 B |
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><rect rx=".5" ry=".5" height="6" width="6" y="1" x="1"/><rect rx=".5" ry=".5" height="6" width="6" y="1" x="9"/><rect rx=".5" ry=".5" height="6" width="6" y="9" x="9"/><rect rx=".5" ry=".5" height="6" width="6" y="9" x="1"/></svg>
|
After Width: | Height: | Size: 328 B |
1
cypress/styleguide/assets/img/actions/toggle.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path opacity="0.5" d="M8 3C4.89 3 2.073 4.72 0 7.5 2.073 10.28 4.89 12 8 12c3.11 0 5.927-1.72 8-4.5C13.927 4.72 11.11 3 8 3zm0 1.5a3 3 0 1 1 0 6 3 3 0 0 1 0-6zM8 6a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/></svg>
|
After Width: | Height: | Size: 308 B |
1
cypress/styleguide/assets/img/actions/triangle-e.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M6 12l4-4-3.994-4z"/></svg>
|
After Width: | Height: | Size: 134 B |
1
cypress/styleguide/assets/img/actions/triangle-n.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M12 10L8 6 4 9.994z"/></svg>
|
After Width: | Height: | Size: 135 B |
1
cypress/styleguide/assets/img/actions/triangle-s.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M4 6l4 4 4-3.994z"/></svg>
|
After Width: | Height: | Size: 133 B |
1
cypress/styleguide/assets/img/actions/upload.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M8 1L2 7h4v4h4V7h4zM2 13v2h12v-2z"/></svg>
|
After Width: | Height: | Size: 149 B |
1
cypress/styleguide/assets/img/actions/user-admin.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m6.9395 0.5c-0.24 0-0.43945 0.19945-0.43945 0.43945v1.2598c-0.5 0.14-1.0493 0.35039-1.5293 0.65039l-0.91016-0.91016c-0.16-0.18-0.46109-0.19-0.62109 0l-1.5 1.5c-0.18 0.17-0.18 0.46109 0 0.62109l0.91016 0.91016c-0.284 0.48-0.50039 0.9993-0.65039 1.5293h-1.2598c-0.24 0-0.43945 0.19945-0.43945 0.43945v2.1211c0 0.25 0.18945 0.43945 0.43945 0.43945h1.2598c0.14 0.54 0.36039 1.0493 0.65039 1.5293l-0.91016 0.91016c-0.18 0.17-0.18 0.45109 0 0.62109l1.5 1.5c0.18 0.18 0.46109 0.18 0.62109 0l0.91016-0.91016c0.48 0.285 0.9993 0.50039 1.5293 0.65039v1.2598c0 0.25 0.19945 0.43945 0.43945 0.43945h2.1211c0.24 0 0.44945-0.19945 0.43945-0.43945v-1.2598c0.54-0.14 1.0493-0.36039 1.5293-0.65039l0.91016 0.91016c0.17 0.18 0.45109 0.18 0.62109 0l1.5-1.5c0.18-0.17 0.18-0.45109 0-0.62109l-0.91016-0.91016c0.29-0.48 0.50039-0.9993 0.65039-1.5293h1.2598c0.24 0 0.44945-0.19945 0.43945-0.43945v-2.1211c0-0.24-0.19945-0.43945-0.43945-0.43945h-1.2598c-0.14-0.54-0.36039-1.0493-0.65039-1.5293l0.91016-0.91016c0.18-0.17 0.18-0.45109 0-0.62109l-1.5-1.5c-0.17-0.18-0.45109-0.18-0.62109 0l-0.91016 0.91016c-0.48-0.29-0.9993-0.50039-1.5293-0.65039v-1.2598c0-0.24-0.19945-0.43945-0.43945-0.43945h-2.1211zm1.0605 2.9922a4.5085 4.5085 0 0 1 4.5078 4.5078 4.5085 4.5085 0 0 1-1.082 2.9277c-0.073996-0.24227-0.18207-0.29128-0.45703-0.50195-0.65293-0.38819-1.456-0.69415-2.1387-0.95117-0.08904-0.3324-0.022553-0.5778 0.060547-0.89062 0.13949-0.14839 0.2973-0.2148 0.41602-0.35547 0.40956-0.52531 0.47461-1.44 0.47461-2.0781 0-0.94378-0.84935-1.6621-1.7812-1.6621-1.0387 0-1.7812 0.84892-1.7812 1.6621 0 0.831 0.059109 1.4252 0.47461 2.0781 0.11871 0.16976 0.2973 0.20708 0.41602 0.35547 0.08013 0.29679 0.14365 0.58196 0.060547 0.89062-0.7568 0.26711-1.4798 0.59503-2.1387 0.95117-0.29555 0.20862-0.39945 0.26205-0.46484 0.48633a4.5085 4.5085 0 0 1-1.0742-2.9121 4.5085 4.5085 0 0 1 4.5078-4.5078z"/></svg>
|
After Width: | Height: | Size: 1.9 KiB |
1
cypress/styleguide/assets/img/actions/user.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 16" height="16" width="16" version="1.1"><path d="m5 3.8c0 1.4 0.1 2.4 0.8 3.5 0.2 0.286 0.5 0.35 0.7 0.6 0.135 0.5 0.24 0.98 0.1 1.5-1.275 0.45-2.49 1-3.6 1.6-0.85 0.6-0.785 0.31-1 2.3-0.16 1.59 3.5 1.7 6 1.7s6.163-0.1 6-1.7c-0.215-2-0.23-1.71-1-2.3-1.1-0.654-2.45-1.167-3.6-1.6-0.15-0.56-0.04-0.973 0.1-1.5 0.235-0.25 0.5-0.363 0.7-0.6 0.69-0.885 0.8-2.425 0.8-3.5 0-1.59-1.43-2.8-3-2.8-1.75 0-3 1.43-3 2.8z"/></svg>
|
After Width: | Height: | Size: 475 B |
1
cypress/styleguide/assets/img/actions/verified.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="m8 0a3 3 0 0 0 -2.828 2 3 3 0 0 0 -0.172 -0 3 3 0 0 0 -3 3 3 3 0 0 0 0 0.172 3 3 0 0 0 -2 2.828 3 3 0 0 0 2 2.828 3 3 0 0 0 -0 0.172 3 3 0 0 0 3 3 3 3 0 0 0 0.172 -0 3 3 0 0 0 2.828 2 3 3 0 0 0 2.828 -2.01 3 3 0 0 0 0.172 0.01 3 3 0 0 0 3 -3 3 3 0 0 0 -0 -0.172 3 3 0 0 0 2 -2.828 3 3 0 0 0 -2.01 -2.828 3 3 0 0 0 0.01 -0.172 3 3 0 0 0 -3 -3 3 3 0 0 0 -0.172 0 3 3 0 0 0 -2.828 -2zm2.934 4.5625 1.433 1.4336-5.7772 5.7789-2.9511-2.9508 1.414-1.414 1.5371 1.5351 4.3442-4.3828z" fill="#0082c9"/></svg>
|
After Width: | Height: | Size: 607 B |
1
cypress/styleguide/assets/img/actions/verify.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="m8 0a3 3 0 0 0 -2.828 2 3 3 0 0 0 -0.172 -0 3 3 0 0 0 -3 3 3 3 0 0 0 0 0.172 3 3 0 0 0 -2 2.828 3 3 0 0 0 2 2.828 3 3 0 0 0 -0 0.172 3 3 0 0 0 3 3 3 3 0 0 0 0.172 -0 3 3 0 0 0 2.828 2 3 3 0 0 0 2.828 -2.01 3 3 0 0 0 0.172 0.01 3 3 0 0 0 3 -3 3 3 0 0 0 -0 -0.172 3 3 0 0 0 2 -2.828 3 3 0 0 0 -2.01 -2.828 3 3 0 0 0 0.01 -0.172 3 3 0 0 0 -3 -3 3 3 0 0 0 -0.172 0 3 3 0 0 0 -2.828 -2zm2.934 4.5625 1.433 1.4336-5.7772 5.7789-2.9511-2.9508 1.414-1.414 1.5371 1.5351 4.3442-4.3828z" fill="#969696"/></svg>
|
After Width: | Height: | Size: 607 B |