diff --git a/argilla-frontend/assets/icons/assign.js b/argilla-frontend/assets/icons/assign.js new file mode 100644 index 0000000000..7b2e3b1989 --- /dev/null +++ b/argilla-frontend/assets/icons/assign.js @@ -0,0 +1,27 @@ +/* + * coding=utf-8 + * Copyright 2021-present, the Recognai S.L. team. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* eslint-disable */ +var icon = require('vue-svgicon') +icon.register({ + 'assign': { + width: 10, + height: 10, + viewBox: '0 0 10 10', + data: '' + } +}) \ No newline at end of file diff --git a/argilla-frontend/assets/icons/index.js b/argilla-frontend/assets/icons/index.js index d37bfc43ea..085380a8d1 100644 --- a/argilla-frontend/assets/icons/index.js +++ b/argilla-frontend/assets/icons/index.js @@ -1,6 +1,7 @@ /* eslint-disable */ require('./arrow-down') require('./arrow-up') +require('./assign') require('./bulk-mode') require('./change-height') require('./check') @@ -34,6 +35,7 @@ require('./meatballs') require('./minimize-arrows') require('./no-matching') require('./pen') +require('./plus') require('./progress') require('./refresh') require('./reset') diff --git a/argilla-frontend/assets/icons/plus.js b/argilla-frontend/assets/icons/plus.js new file mode 100644 index 0000000000..14753da524 --- /dev/null +++ b/argilla-frontend/assets/icons/plus.js @@ -0,0 +1,27 @@ +/* + * coding=utf-8 + * Copyright 2021-present, the Recognai S.L. team. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* eslint-disable */ +var icon = require('vue-svgicon') +icon.register({ + 'plus': { + width: 16, + height: 16, + viewBox: '0 0 16 16', + data: '' + } +}) \ No newline at end of file diff --git a/argilla-frontend/assets/scss/abstract/variables/_themes.scss b/argilla-frontend/assets/scss/abstract/variables/_themes.scss index f6330425b4..5790fae4ae 100644 --- a/argilla-frontend/assets/scss/abstract/variables/_themes.scss +++ b/argilla-frontend/assets/scss/abstract/variables/_themes.scss @@ -76,6 +76,8 @@ --bg-banner-warning: hsl(47, 83%, 91%); --bg-banner-error: hsl(3, 100%, 92%); --bg-tooltip: var(--color-dark-grey); + --bg-config-card: hsl(227, 100%, 90%); + --bg-congig-alert: hsl(41, 100%, 82%, 0.8); --fg-chat-1: #488d81; --fg-chat-2: #e07be0; --fg-chat-3: #fd926a; @@ -146,6 +148,8 @@ --bg-banner-warning: hsl(47, 83%, 16%); --bg-banner-error: hsl(3, 100%, 20%); --bg-tooltip: hsl(207, 9%, 32%); + --bg-config-card: hsla(227, 100%, 82%, 30%); + --bg-congig-alert: hsl(41, 100%, 82%, 0.4); --fg-chat-1: #628e87; --fg-chat-2: #af6daf; --fg-chat-3: #cd8065; diff --git a/argilla-frontend/assets/scss/base/base.scss b/argilla-frontend/assets/scss/base/base.scss index 07e4362888..515b5e505f 100644 --- a/argilla-frontend/assets/scss/base/base.scss +++ b/argilla-frontend/assets/scss/base/base.scss @@ -15,7 +15,7 @@ * limitations under the License. */ -@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap"); html { box-sizing: border-box; -webkit-text-size-adjust: 100%; diff --git a/argilla-frontend/components/base/base-card/BaseCard.vue b/argilla-frontend/components/base/base-card/BaseCard.vue index f6f9968fe3..af4e8aa6b8 100644 --- a/argilla-frontend/components/base/base-card/BaseCard.vue +++ b/argilla-frontend/components/base/base-card/BaseCard.vue @@ -61,7 +61,7 @@ export default { }; - diff --git a/argilla-frontend/components/features/annotation/container/fields/RecordFieldsHeader.vue b/argilla-frontend/components/features/annotation/container/fields/RecordFieldsHeader.vue index 6d87a9ac5e..660268a7ce 100644 --- a/argilla-frontend/components/features/annotation/container/fields/RecordFieldsHeader.vue +++ b/argilla-frontend/components/features/annotation/container/fields/RecordFieldsHeader.vue @@ -1,5 +1,6 @@