diff --git a/core/modules/block/block.admin.inc b/core/modules/block/block.admin.inc
index 2a17a55..9018099 100644
--- a/core/modules/block/block.admin.inc
+++ b/core/modules/block/block.admin.inc
@@ -173,6 +173,7 @@ function block_admin_display_form($form, &$form_state, $blocks, $theme, $block_r
   $form['actions']['submit'] = array(
     '#type' => 'submit',
     '#value' => t('Save blocks'),
+	'#button_type' => 'primary',
   );
 
   return $form;
@@ -507,6 +508,7 @@ function block_admin_configure($form, &$form_state, $module, $delta) {
   $form['actions']['submit'] = array(
     '#type' => 'submit',
     '#value' => t('Save block'),
+	'#button_type' => 'primary',
   );
 
   return $form;
diff --git a/core/modules/forum/forum.admin.inc b/core/modules/forum/forum.admin.inc
index e3c564a..34ddb79 100644
--- a/core/modules/forum/forum.admin.inc
+++ b/core/modules/forum/forum.admin.inc
@@ -73,7 +73,7 @@ function forum_form_forum($form, &$form_state, $edit = array()) {
 
   $form['vid'] = array('#type' => 'hidden', '#value' => config('forum.settings')->get('vocabulary'));
   $form['actions'] = array('#type' => 'actions');
-  $form['actions']['submit'] = array('#type' => 'submit', '#value' => t('Save'));
+  $form['actions']['submit'] = array('#type' => 'submit', '#value' => t('Save'), '#button_type' => 'primary');
   if ($edit['tid']) {
     $form['actions']['delete'] = array('#type' => 'submit', '#value' => t('Delete'));
     $form['tid'] = array('#type' => 'hidden', '#value' => $edit['tid']);
@@ -187,7 +187,8 @@ function forum_form_container($form, &$form_state, $edit = array()) {
   $form['actions'] = array('#type' => 'actions');
   $form['actions']['submit'] = array(
     '#type' => 'submit',
-    '#value' => t('Save')
+    '#value' => t('Save'),
+	'#button_type' => 'primary',
   );
   if ($edit['tid']) {
     $form['actions']['delete'] = array('#type' => 'submit', '#value' => t('Delete'));
diff --git a/core/modules/menu/menu.admin.inc b/core/modules/menu/menu.admin.inc
index 605f898..ce06fcb 100644
--- a/core/modules/menu/menu.admin.inc
+++ b/core/modules/menu/menu.admin.inc
@@ -95,6 +95,7 @@ function menu_overview_form($form, &$form_state, $menu) {
     $form['actions']['submit'] = array(
       '#type' => 'submit',
       '#value' => t('Save configuration'),
+	  '#button_type' => 'primary',
     );
   }
   else {
@@ -407,8 +408,8 @@ function menu_edit_item($form, &$form_state, $type, $item, $menu) {
     '#default_value' => $item['weight'],
     '#description' => t('Optional. In the menu, the heavier links will sink and the lighter links will be positioned nearer the top.'),
   );
-  $form['actions']['submit'] = array('#type' => 'submit', '#value' => t('Save'));
-
+  $form['actions']['submit'] = array('#type' => 'submit', '#value' => t('Save'), '#button_type' => 'primary');
+ 
   return $form;
 }
 
@@ -529,6 +530,7 @@ function menu_edit_menu($form, &$form_state, $type, $menu = array()) {
   $form['actions']['submit'] = array(
     '#type' => 'submit',
     '#value' => t('Save'),
+	'#button_type' => 'primary',
   );
   // Only custom menus may be deleted.
   $form['actions']['delete'] = array(
diff --git a/core/modules/system/system.module b/core/modules/system/system.module
index 950fee6..fc85a4b 100644
--- a/core/modules/system/system.module
+++ b/core/modules/system/system.module
@@ -3232,6 +3232,7 @@ function system_config_form($form, &$form_state) {
   $form['actions']['submit'] = array(
     '#type' => 'submit',
     '#value' => t('Save configuration'),
+	'#button_type' => 'primary',
   );
 
   // Add system_config_form_submit() to output a consistent confirmation
diff --git a/core/modules/taxonomy/taxonomy.admin.inc b/core/modules/taxonomy/taxonomy.admin.inc
index 6a14e3c..3b1bc49 100644
--- a/core/modules/taxonomy/taxonomy.admin.inc
+++ b/core/modules/taxonomy/taxonomy.admin.inc
@@ -51,7 +51,7 @@ function taxonomy_overview_vocabularies($form) {
   // vocabulary exists.
   if (count($vocabularies) > 1) {
     $form['actions'] = array('#type' => 'actions');
-    $form['actions']['submit'] = array('#type' => 'submit', '#value' => t('Save'));
+    $form['actions']['submit'] = array('#type' => 'submit', '#value' => t('Save'), '#button_type' => 'primary');
   }
   elseif (isset($vocabulary)) {
     unset($form[$vocabulary->vid]['weight']);
@@ -312,7 +312,8 @@ function taxonomy_overview_terms($form, &$form_state, Vocabulary $vocabulary) {
     $form['actions'] = array('#type' => 'actions', '#tree' => FALSE);
     $form['actions']['submit'] = array(
       '#type' => 'submit',
-      '#value' => t('Save')
+      '#value' => t('Save'),
+	  '#button_type' => 'primary',
     );
     $form['actions']['reset_alphabetical'] = array(
       '#type' => 'submit',
diff --git a/core/modules/views/views_ui/admin.inc b/core/modules/views/views_ui/admin.inc
index 1c67ceb..38c8b37 100644
--- a/core/modules/views/views_ui/admin.inc
+++ b/core/modules/views/views_ui/admin.inc
@@ -2040,6 +2040,7 @@ function views_ui_admin_settings_advanced() {
   $form['actions']['submit'] = array(
     '#type' => 'submit',
     '#value' => t('Save configuration'),
+	'#button_type' => 'primary',
   );
   $form['#submit'][] = 'views_ui_admin_settings_advanced_submit';
 
