[skip ci] Convert wells to card, port info-well
This commit is contained in:
parent
6e82c9208d
commit
58a804bb0c
14 changed files with 35 additions and 19 deletions
16
app/assets/stylesheets/bootstrap_migration.scss
vendored
16
app/assets/stylesheets/bootstrap_migration.scss
vendored
|
@ -72,3 +72,19 @@ button, html [type="button"], [type="reset"], [type="submit"] {
|
|||
.divider {
|
||||
@extend .dropdown-divider;
|
||||
}
|
||||
|
||||
.info-well {
|
||||
background: $theme-gray-50;
|
||||
color: $gl-text-color;
|
||||
border: 1px solid $border-color;
|
||||
border-radius: 4px;
|
||||
margin-bottom: 16px;
|
||||
|
||||
.well-segment {
|
||||
padding: 16px;
|
||||
|
||||
&:not(:last-of-type) {
|
||||
border-bottom: 1px solid $well-inner-border;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,6 +13,6 @@
|
|||
= render @labels
|
||||
= paginate @labels, theme: 'gitlab'
|
||||
- else
|
||||
.light-well
|
||||
.card.bg-light
|
||||
.nothing-here-block There are no labels yet
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
.prepend-top-default
|
||||
.row
|
||||
.col-sm-4
|
||||
.light-well
|
||||
.card.bg-light
|
||||
%h4 CPU
|
||||
.data
|
||||
- if @cpus
|
||||
|
@ -14,7 +14,7 @@
|
|||
= icon('warning', class: 'text-warning')
|
||||
Unable to collect CPU info
|
||||
.col-sm-4
|
||||
.light-well
|
||||
.card.bg-light
|
||||
%h4 Memory Usage
|
||||
.data
|
||||
- if @memory
|
||||
|
@ -23,7 +23,7 @@
|
|||
= icon('warning', class: 'text-warning')
|
||||
Unable to collect memory info
|
||||
.col-sm-4
|
||||
.light-well
|
||||
.card.bg-light
|
||||
%h4 Disk Usage
|
||||
.data
|
||||
- @disks.each do |disk|
|
||||
|
@ -31,7 +31,7 @@
|
|||
%p= disk[:disk_name]
|
||||
%p= disk[:mount_path]
|
||||
.col-sm-4
|
||||
.light-well
|
||||
.card.bg-light
|
||||
%h4 Uptime
|
||||
.data
|
||||
%h1= distance_of_time_in_words_to_now(Rails.application.config.booted_at)
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
%b will
|
||||
lose access to your account.
|
||||
|
||||
.codes.well
|
||||
.codes.card
|
||||
%ul
|
||||
- @codes.each do |code|
|
||||
%li
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
- link_gke = link_to(s_('ClusterIntegration|Google Kubernetes Engine'), @cluster.gke_cluster_url, target: '_blank', rel: 'noopener noreferrer')
|
||||
= s_('ClusterIntegration|Manage your Kubernetes cluster by visiting %{link_gke}').html_safe % { link_gke: link_gke }
|
||||
|
||||
.well.form-group
|
||||
.card.form-group
|
||||
%label.text-danger
|
||||
= s_('ClusterIntegration|Remove Kubernetes cluster integration')
|
||||
%p
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
= render "projects/commits/commit_list"
|
||||
= render "projects/diffs/diffs", diffs: @diffs, environment: @environment
|
||||
- else
|
||||
.light-well
|
||||
.card.bg-light
|
||||
.center
|
||||
%h4
|
||||
= s_("CompareBranches|There isn't anything to compare.")
|
||||
|
|
|
@ -44,14 +44,14 @@
|
|||
.git-empty
|
||||
%fieldset
|
||||
%h5 Git global setup
|
||||
%pre.light-well
|
||||
%pre.card.bg-light
|
||||
:preserve
|
||||
git config --global user.name "#{h git_user_name}"
|
||||
git config --global user.email "#{h git_user_email}"
|
||||
|
||||
%fieldset
|
||||
%h5 Create a new repository
|
||||
%pre.light-well
|
||||
%pre.card.bg-light
|
||||
:preserve
|
||||
git clone #{ content_tag(:span, default_url_to_repo, class: 'clone')}
|
||||
cd #{h @project.path}
|
||||
|
@ -62,7 +62,7 @@
|
|||
|
||||
%fieldset
|
||||
%h5 Existing folder
|
||||
%pre.light-well
|
||||
%pre.card.bg-light
|
||||
:preserve
|
||||
cd existing_folder
|
||||
git init
|
||||
|
@ -73,7 +73,7 @@
|
|||
|
||||
%fieldset
|
||||
%h5 Existing Git repository
|
||||
%pre.light-well
|
||||
%pre.card.bg-light
|
||||
:preserve
|
||||
cd existing_repo
|
||||
git remote rename origin old-origin
|
||||
|
|
|
@ -18,5 +18,5 @@
|
|||
%ul.content-list
|
||||
= render partial: "table"
|
||||
- else
|
||||
.light-well
|
||||
.card.bg-light
|
||||
.nothing-here-block= _("No schedules")
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
- enabled = Gitlab.config.mattermost.enabled
|
||||
|
||||
.well
|
||||
.card
|
||||
%p
|
||||
This service allows users to perform common operations on this
|
||||
project by entering slash commands in Mattermost.
|
||||
|
|
|
@ -5,5 +5,5 @@
|
|||
= s_('PrometheusService|Manual configuration')
|
||||
|
||||
- unless @service.editable?
|
||||
.well
|
||||
.card
|
||||
= s_('PrometheusService|To enable manual configuration, uninstall Prometheus from your clusters')
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
- pretty_name = defined?(@project) ? @project.full_name : 'namespace / path'
|
||||
- run_actions_text = "Perform common operations on GitLab project: #{pretty_name}"
|
||||
|
||||
.well
|
||||
.card
|
||||
%p
|
||||
This service allows users to perform common operations on this
|
||||
project by entering slash commands in Slack.
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
= f.text_field :import_url, autocomplete: 'off', class: 'form-control', placeholder: 'https://username:password@gitlab.company.com/group/project.git', required: true
|
||||
|
||||
.well.prepend-top-20
|
||||
.card.prepend-top-20
|
||||
%ul
|
||||
%li
|
||||
= _('The repository must be accessible over <code>http://</code>, <code>https://</code> or <code>git://</code>.').html_safe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
- if lookup_context.template_exists?('help', "projects/services/#{@service.to_param}", true)
|
||||
= render "projects/services/#{@service.to_param}/help", subject: subject
|
||||
- elsif @service.help.present?
|
||||
.well
|
||||
.card
|
||||
= markdown @service.help
|
||||
|
||||
.service-settings
|
||||
|
|
|
@ -19,5 +19,5 @@
|
|||
.monospace
|
||||
= File.basename(file)
|
||||
- else
|
||||
%p.light-well.text-center
|
||||
%p.card.bg-light.text-center
|
||||
No plugins found.
|
||||
|
|
Loading…
Reference in a new issue